summaryrefslogtreecommitdiff
path: root/include/util/IntTypes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/IntTypes.hpp')
-rw-r--r--include/util/IntTypes.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/util/IntTypes.hpp b/include/util/IntTypes.hpp
new file mode 100644
index 0000000..f5ec91e
--- /dev/null
+++ b/include/util/IntTypes.hpp
@@ -0,0 +1,10 @@
+#ifndef __UTIL_INTTYPES_H
+#define __UTIL_INTTYPES_H
+
+#ifdef _WIN32
+#include "util/msinttypes/inttypes.h"
+#else
+#include <inttypes.h>
+#endif
+
+#endif