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:
Diffstat (limited to 'std/set.hpp')
-rw-r--r--std/set.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/std/set.hpp b/std/set.hpp
index 08824617f1..eb70550545 100644
--- a/std/set.hpp
+++ b/std/set.hpp
@@ -1,11 +1,16 @@
#pragma once
#include "common_defines.hpp"
+#include "target_os.hpp"
#ifdef new
#undef new
#endif
-#include <set>
+#if defined(DEBUG) && (defined(OMIM_OS_LINUX) || defined(OMIM_OS_MAC))
+ #include <debug/set>
+#else
+ #include <set>
+#endif
using std::set;
#ifdef DEBUG_NEW