Use cstdint in types.h

This commit is contained in:
wheremyfoodat 2023-09-29 14:40:26 +03:00 committed by GitHub
parent 1395fd4939
commit 7791a8eeed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 9 deletions

View File

@ -1,14 +1,15 @@
#pragma once #pragma once
#include <cstdint>
using s08 = char; using s08 = std::int8_t;
using s16 = short; using s16 = std::int16_t;
using s32 = int; using s32 = std::int32_t;
using s64 = long long; using s64 = std::int64_t;
using u08 = unsigned char; using u08 = std::uint8_t;
using u16 = unsigned short; using u16 = std::uint16_t;
using u32 = unsigned int; using u32 = std::uint32_t;
using u64 = unsigned long long; using u64 = std::uint64_t;
using f32 = float; using f32 = float;
using f64 = double; using f64 = double;