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/iterator.hpp')
-rw-r--r--std/iterator.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/std/iterator.hpp b/std/iterator.hpp
deleted file mode 100644
index a5447e3f9b..0000000000
--- a/std/iterator.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-
-#ifdef new
-#undef new
-#endif
-
-#include <iterator>
-
-using std::advance;
-using std::back_insert_iterator;
-using std::back_inserter;
-using std::begin;
-using std::distance;
-using std::end;
-using std::insert_iterator;
-using std::inserter;
-using std::istream_iterator;
-using std::istreambuf_iterator;
-using std::iterator_traits;
-using std::next;
-using std::reverse_iterator;
-
-#ifdef DEBUG_NEW
-#define new DEBUG_NEW
-#endif