summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-05-05 22:43:17 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-05-05 22:51:46 +0200
commit0a3118a851540c2ad4048e3ff5f11d812f667043 (patch)
treef9c95b30ac24ee03b613525d03fefc24d31623f4 /src/utils
parentbb9a9b9b0f4ec7cc6a9ca3a6bd2dc35b0b6541e7 (diff)
downloadmanaserv-0a3118a851540c2ad4048e3ff5f11d812f667043.tar.gz
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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/tokencollector.h b/src/utils/tokencollector.h
index 3d2b653..0923eac 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>