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/stdint.hpp
parentb64031160cf61bf566bcf22b692c223bef39fe67 (diff)
Fixed <cstdint>.
Diffstat (limited to 'std/stdint.hpp')
-rw-r--r--std/stdint.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/std/stdint.hpp b/std/stdint.hpp
deleted file mode 100644
index 16786e8886..0000000000
--- a/std/stdint.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include "common_defines.hpp"
-#include "target_os.hpp"
-
-#ifdef new
-#undef new
-#endif
-
-#if defined(_MSC_VER) && _MSC_VER < 1600 // in VS2010 types below are defined
- typedef __int8 int8_t;
- typedef __int16 int16_t;
- typedef __int32 int32_t;
- typedef __int64 int64_t;
- typedef unsigned __int8 uint8_t;
- typedef unsigned __int16 uint16_t;
- typedef unsigned __int32 uint32_t;
- typedef unsigned __int64 uint64_t;
-
-#elif defined(OMIM_OS_BADA) || defined(OMIM_OS_ANDROID)
- #include <stdint.h>
-
-#else
- #ifdef OMIM_OS_LINUX
- #include <stdint.h>
- #endif
- #include <boost/cstdint.hpp>
-
-#endif
-
-#ifdef DEBUG_NEW
-#define new DEBUG_NEW
-#endif