diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-11-09 01:58:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-11-09 01:58:56 +0300 |
commit | 95413709e41e1442ad51caa5e33b08ce6adb3887 (patch) | |
tree | 806bad9433c4565a5bc1374361815844f162d902 /src/net/netconsts.h | |
parent | 92014f8bc11c3c27da8264bf3dd835ab6ae99e20 (diff) | |
download | plus-95413709e41e1442ad51caa5e33b08ce6adb3887.tar.gz plus-95413709e41e1442ad51caa5e33b08ce6adb3887.tar.bz2 plus-95413709e41e1442ad51caa5e33b08ce6adb3887.tar.xz plus-95413709e41e1442ad51caa5e33b08ce6adb3887.zip |
fix compilation without C++11 flags.
Diffstat (limited to 'src/net/netconsts.h')
-rw-r--r-- | src/net/netconsts.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/netconsts.h b/src/net/netconsts.h index 0af23b8a9..00c91fda5 100644 --- a/src/net/netconsts.h +++ b/src/net/netconsts.h @@ -21,7 +21,12 @@ #ifndef NET_NETCONSTS_H #define NET_NETCONSTS_H +#if defined(__GXX_EXPERIMENTAL_CXX0X__) #include <cstdint> +#else +#include <stdint.h> +#endif + static const uint16_t DEFAULT_PORT = 6901; #endif // NET_NETCONSTS_H |