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
path: root/std
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2015-04-23 13:06:24 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:46:20 +0300
commita6cfae06e67bea4926b3be90c1a8fdb6c45c410f (patch)
tree096a623ee8309d519226fbe8c9f171f10cdc5867 /std
parent33013f2f59b00981aeb1b2f42f176ad419ff0253 (diff)
[build] s/OMIM_HAS_DEBUG_STL/OMIM_USE_DEBUG_STL/
Diffstat (limited to 'std')
-rw-r--r--std/bitset.hpp2
-rw-r--r--std/deque.hpp2
-rw-r--r--std/list.hpp2
-rw-r--r--std/map.hpp2
-rw-r--r--std/set.hpp2
-rw-r--r--std/string.hpp2
-rw-r--r--std/vector.hpp2
7 files changed, 7 insertions, 7 deletions
diff --git a/std/bitset.hpp b/std/bitset.hpp
index b8c4246fa6..2f737e826e 100644
--- a/std/bitset.hpp
+++ b/std/bitset.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/bitset>
#else
#include <bitset>
diff --git a/std/deque.hpp b/std/deque.hpp
index f9c543d621..435e0c1db4 100644
--- a/std/deque.hpp
+++ b/std/deque.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/deque>
#else
#include <deque>
diff --git a/std/list.hpp b/std/list.hpp
index 114cfe0f7b..991f649c59 100644
--- a/std/list.hpp
+++ b/std/list.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/list>
#else
#include <list>
diff --git a/std/map.hpp b/std/map.hpp
index b144406026..13559c5b9d 100644
--- a/std/map.hpp
+++ b/std/map.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/map>
#else
#include <map>
diff --git a/std/set.hpp b/std/set.hpp
index 3226daaaf8..a1dcd481ac 100644
--- a/std/set.hpp
+++ b/std/set.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/set>
#else
#include <set>
diff --git a/std/string.hpp b/std/string.hpp
index fd2804cfb8..f2c126636a 100644
--- a/std/string.hpp
+++ b/std/string.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/string>
#else
#include <string>
diff --git a/std/vector.hpp b/std/vector.hpp
index e0c289d8a3..d4c5c02f07 100644
--- a/std/vector.hpp
+++ b/std/vector.hpp
@@ -6,7 +6,7 @@
#undef new
#endif
-#ifdef OMIM_HAS_DEBUG_STL
+#ifdef OMIM_USE_DEBUG_STL
#include <debug/vector>
#else
#include <vector>