mirror of
https://github.com/vcmi/vcmi.git
synced 2025-03-19 21:10:12 +02:00
Delete unnecessary range.
This commit is contained in:
parent
de7184d68d
commit
54e75eb0e3
16
Global.h
16
Global.h
@ -195,14 +195,14 @@ namespace range = boost::range;
|
||||
/* Typedefs */
|
||||
/* ---------------------------------------------------------------------------- */
|
||||
// Integral data types
|
||||
typedef boost::uint64_t ui64; //unsigned int 64 bits (8 bytes)
|
||||
typedef boost::uint32_t ui32; //unsigned int 32 bits (4 bytes)
|
||||
typedef boost::uint16_t ui16; //unsigned int 16 bits (2 bytes)
|
||||
typedef boost::uint8_t ui8; //unsigned int 8 bits (1 byte)
|
||||
typedef boost::int64_t si64; //signed int 64 bits (8 bytes)
|
||||
typedef boost::int32_t si32; //signed int 32 bits (4 bytes)
|
||||
typedef boost::int16_t si16; //signed int 16 bits (2 bytes)
|
||||
typedef boost::int8_t si8; //signed int 8 bits (1 byte)
|
||||
typedef uint64_t ui64; //unsigned int 64 bits (8 bytes)
|
||||
typedef uint32_t ui32; //unsigned int 32 bits (4 bytes)
|
||||
typedef uint16_t ui16; //unsigned int 16 bits (2 bytes)
|
||||
typedef uint8_t ui8; //unsigned int 8 bits (1 byte)
|
||||
typedef int64_t si64; //signed int 64 bits (8 bytes)
|
||||
typedef int32_t si32; //signed int 32 bits (4 bytes)
|
||||
typedef int16_t si16; //signed int 16 bits (2 bytes)
|
||||
typedef int8_t si8; //signed int 8 bits (1 byte)
|
||||
|
||||
// Lock typedefs
|
||||
typedef boost::lock_guard<boost::mutex> TLockGuard;
|
||||
|
Loading…
x
Reference in New Issue
Block a user