summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-10-11 16:49:23 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-10-11 16:49:23 +0200
commit6a5ef462395c8b2e804551464bca132cddd59525 (patch)
treebcb6cf823b9b9b39e4cf712eff3d6e57d282c0f7
parent0ac0c6aa170d0fd9501b2076fd189dbb9a2e1e45 (diff)
downloadcrawler-6a5ef462395c8b2e804551464bca132cddd59525.tar.gz
crawler-6a5ef462395c8b2e804551464bca132cddd59525.tar.bz2
dito for stdint.hpp
-rw-r--r--include/util/StdInt.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/util/StdInt.hpp b/include/util/StdInt.hpp
new file mode 100644
index 0000000..1f999a4
--- /dev/null
+++ b/include/util/StdInt.hpp
@@ -0,0 +1,10 @@
+#ifndef __UTIL_STDINT_H
+#define __UTIL_STDINT_H
+
+#ifdef _WIN32
+#include "util/msinttypes/stdint.h"
+#else
+#include <stdint.h>
+#endif
+
+#endif