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@mapswithme.com>2014-08-09 20:41:29 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:25:04 +0300
commitbf315c320860e5bbca786ed48625e780e86d8c3b (patch)
tree0a97670bcc1ecf25dde9ddd3bc1f3806933a6ff1 /std/target_os.hpp
parent1c8675c1d55fdf66b64b06f7e736b557ae533298 (diff)
Warning and compilation fixes
Diffstat (limited to 'std/target_os.hpp')
-rw-r--r--std/target_os.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/std/target_os.hpp b/std/target_os.hpp
index 9474dedc24..7aec82416b 100644
--- a/std/target_os.hpp
+++ b/std/target_os.hpp
@@ -4,7 +4,9 @@
#define OMIM_OS_ANDROID
#define OMIM_OS_NAME "android"
#define OMIM_OS_MOBILE
- #define OMIM_HAS_DEBUG_STL 1
+ #if __cplusplus <= 199711L
+ #define OMIM_HAS_DEBUG_STL 1
+ #endif
#elif defined(_TIZEN_EMULATOR) || defined(_TIZEN_DEVICE)
#define OMIM_OS_TIZEN
@@ -49,5 +51,5 @@
#define OMIM_OS_NAME "linux"
#define OMIM_OS_DESKTOP
#define OMIM_HAS_DEBUG_STL 1
-
+
#endif