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/stack.hpp')
-rw-r--r--std/stack.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/std/stack.hpp b/std/stack.hpp
new file mode 100644
index 0000000000..88d2bbd4fe
--- /dev/null
+++ b/std/stack.hpp
@@ -0,0 +1,12 @@
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <stack>
+using std::stack;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif