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
#include <cstdint>
using s08 = char;
using s16 = short;
using s32 = int;
using s64 = long long;
using s08 = std::int8_t;
using s16 = std::int16_t;
using s32 = std::int32_t;
using s64 = std::int64_t;
using u08 = unsigned char;
using u16 = unsigned short;
using u32 = unsigned int;
using u64 = unsigned long long;
using u08 = std::uint8_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;
using f32 = float;
using f64 = double;
@ -19,4 +20,4 @@ using f64 = double;
// UDLs for memory size values
constexpr u64 operator""_KB(u64 x) { return 1024ULL * x; }
constexpr u64 operator""_MB(u64 x) { return 1024_KB * x; }
constexpr u64 operator""_GB(u64 x) { return 1024_MB * x; }
constexpr u64 operator""_GB(u64 x) { return 1024_MB * x; }