diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-05-05 22:43:17 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-05-05 22:51:46 +0200 |
commit | 0a3118a851540c2ad4048e3ff5f11d812f667043 (patch) | |
tree | f9c95b30ac24ee03b613525d03fefc24d31623f4 /src/utils | |
parent | bb9a9b9b0f4ec7cc6a9ca3a6bd2dc35b0b6541e7 (diff) | |
download | manaserv-0a3118a851540c2ad4048e3ff5f11d812f667043.tar.gz manaserv-0a3118a851540c2ad4048e3ff5f11d812f667043.tar.bz2 manaserv-0a3118a851540c2ad4048e3ff5f11d812f667043.tar.xz manaserv-0a3118a851540c2ad4048e3ff5f11d812f667043.zip |
Small GCC 4.7 compile fix
Not entirely according to the standards since this is a C99 header,
but that's better than not having it compile at all, or switching
it entirely over to C++11 mode just now.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/tokencollector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/tokencollector.h b/src/utils/tokencollector.h index 3d2b653d..0923eac6 100644 --- a/src/utils/tokencollector.h +++ b/src/utils/tokencollector.h @@ -21,6 +21,7 @@ #ifndef TOKENCOLLECTOR_H #define TOKENCOLLECTOR_H +#include <stdint.h> #include <string> #include <list> #include <time.h> |