mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 07:39:45 -06:00
Merge pull request #5952 from lioncash/futureproofing
CommonTypes: Qualify standard integral types in typedefs with std::
This commit is contained in:
@ -18,12 +18,12 @@
|
|||||||
#define LONG int
|
#define LONG int
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef uint8_t u8;
|
using u8 = std::uint8_t;
|
||||||
typedef uint16_t u16;
|
using u16 = std::uint16_t;
|
||||||
typedef uint32_t u32;
|
using u32 = std::uint32_t;
|
||||||
typedef uint64_t u64;
|
using u64 = std::uint64_t;
|
||||||
|
|
||||||
typedef int8_t s8;
|
using s8 = std::int8_t;
|
||||||
typedef int16_t s16;
|
using s16 = std::int16_t;
|
||||||
typedef int32_t s32;
|
using s32 = std::int32_t;
|
||||||
typedef int64_t s64;
|
using s64 = std::int64_t;
|
||||||
|
Reference in New Issue
Block a user