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.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/std/set.hpp b/std/set.hpp
new file mode 100644
index 0000000000..08824617f1
--- /dev/null
+++ b/std/set.hpp
@@ -0,0 +1,13 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <set>
+using std::set;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif