mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Use <stdint.h>
instead of <cstdint>
This commit is contained in:
parent
ebb9481857
commit
125377bf2d
|
@ -4,7 +4,7 @@
|
|||
#define GAME_SERVER_EVENTHANDLER_H
|
||||
|
||||
#if !defined(_MSC_VER) || _MSC_VER >= 1600
|
||||
#include <cstdint>
|
||||
#include <stdint.h>
|
||||
#else
|
||||
typedef __int32 int32_t;
|
||||
typedef unsigned __int32 uint32_t;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
class CDoor;
|
||||
#if !defined(_MSC_VER) || _MSC_VER >= 1600
|
||||
#include <cstdint>
|
||||
#include <stdint.h>
|
||||
#else
|
||||
typedef __int32 int32_t;
|
||||
typedef unsigned __int32 uint32_t;
|
||||
|
|
Loading…
Reference in a new issue