Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-06-24 13:46:55 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:31 +0300
commit65e733dfea699d9c75c1f413488a2d9071944c03 (patch)
tree3891e3f4588175ec85f2a9ed4e48303db28b4130 /std/cstdint.hpp
parentb64031160cf61bf566bcf22b692c223bef39fe67 (diff)
Fixed <cstdint>.
Diffstat (limited to 'std/cstdint.hpp')
-rw-r--r--std/cstdint.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/std/cstdint.hpp b/std/cstdint.hpp
new file mode 100644
index 0000000000..8ced63f058
--- /dev/null
+++ b/std/cstdint.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#ifdef new
+#undef new
+#endif
+
+#include <cstdint>
+using std::int8_t;
+using std::uint8_t;
+using std::int16_t;
+using std::uint16_t;
+using std::int32_t;
+using std::uint32_t;
+using std::int64_t;
+using std::uint64_t;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif