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:
authorvng <viktor.govako@gmail.com>2011-02-04 11:31:43 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:11:36 +0300
commit85b38d169af2d3d2a46363fb9c9dd1e3b2ad1320 (patch)
tree3882fe94be5e1c623f298ebc25a3d56c21840371 /std/stack.hpp
parentb782031fbb01109548387818b02d3158be2e6d55 (diff)
Add some "std".
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