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-11-16 07:37:24 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:28:07 +0300
commitad7b270a85b6a18fb31074af6e92359c437079b1 (patch)
tree9451800894f031f8e578d62723cee07557cb5c57 /std/iterator_facade.hpp
parent201ec0a2ba5165856e3ff7eb4d70372d60fad0bd (diff)
Add iterator_facade.hpp to std.
Diffstat (limited to 'std/iterator_facade.hpp')
-rw-r--r--std/iterator_facade.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/std/iterator_facade.hpp b/std/iterator_facade.hpp
new file mode 100644
index 0000000000..232956644e
--- /dev/null
+++ b/std/iterator_facade.hpp
@@ -0,0 +1,14 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <boost/iterator/iterator_facade.hpp>
+using boost::iterator_facade;
+using boost::random_access_traversal_tag;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif