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/queue.hpp')
-rw-r--r--std/queue.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/std/queue.hpp b/std/queue.hpp
new file mode 100644
index 0000000000..6092f48eaf
--- /dev/null
+++ b/std/queue.hpp
@@ -0,0 +1,14 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <queue>
+using std::queue;
+using std::priority_queue;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif