diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-09 00:41:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-09 00:41:07 +0300 |
commit | 099e939f2690fdfbbe594f31c31d8aa9dc09640a (patch) | |
tree | 0838a607f0914bb696f11488286cfb3e4541c7cf | |
parent | d9ffcee4837b22bd404589079373c9157ef448bb (diff) | |
download | plus-099e939f2690fdfbbe594f31c31d8aa9dc09640a.tar.gz plus-099e939f2690fdfbbe594f31c31d8aa9dc09640a.tar.bz2 plus-099e939f2690fdfbbe594f31c31d8aa9dc09640a.tar.xz plus-099e939f2690fdfbbe594f31c31d8aa9dc09640a.zip |
Add missing include into header.
-rw-r--r-- | src/const/net/nostat.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/const/net/nostat.h b/src/const/net/nostat.h index f56ce5925..3e2553d4f 100644 --- a/src/const/net/nostat.h +++ b/src/const/net/nostat.h @@ -21,6 +21,16 @@ #ifndef CONST_NET_NOSTAT_H #define CONST_NET_NOSTAT_H +#if defined(__GXX_EXPERIMENTAL_CXX0X__) +#if defined(__APPLE__) +#include <tr1/cstdint> +#else +#include <cstdint> +#endif +#else +#include <stdint.h> +#endif + static const int NoStat = INT_MAX; #endif // CONST_NET_NOSTAT_H |