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
path: root/std
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2015-08-04 20:14:25 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:02:15 +0300
commite8acd6f4596ebf011822e0c86fbca556faf3b724 (patch)
tree08b46a49a5a14fcb9cf4721c8cddf733cb525ebe /std
parent119ade14dd338781580e6f0134b231f5cebe98c0 (diff)
[omim] [coding] Compressed bit vectors.
Diffstat (limited to 'std')
-rw-r--r--std/algorithm.hpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/std/algorithm.hpp b/std/algorithm.hpp
index 27a647d675..9e7b7e75f8 100644
--- a/std/algorithm.hpp
+++ b/std/algorithm.hpp
@@ -8,11 +8,14 @@
using std::all_of;
using std::binary_search;
+using std::copy;
using std::equal;
+using std::equal_range;
using std::fill;
using std::find;
-using std::find_if;
using std::find_first_of;
+using std::find_if;
+using std::for_each;
using std::is_sorted;
using std::lexicographical_compare;
using std::lower_bound;
@@ -20,20 +23,17 @@ using std::max;
using std::max_element;
using std::min;
using std::next_permutation;
-using std::sort;
-using std::stable_sort;
using std::partial_sort;
-using std::swap;
-using std::upper_bound;
-using std::unique;
-using std::equal_range;
-using std::for_each;
-using std::copy;
using std::remove_if;
using std::replace;
using std::reverse;
-using std::set_union;
using std::set_intersection;
+using std::set_union;
+using std::sort;
+using std::stable_sort;
+using std::swap;
+using std::unique;
+using std::upper_bound;
// Bug workaround, see http://connect.microsoft.com/VisualStudio/feedbackdetail/view/840578/algorithm-possible-c-compiler-bug-when-using-std-set-difference-with-custom-comperator
#ifdef _MSC_VER
namespace vs_bug
@@ -81,14 +81,14 @@ OutputIt set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputI
#else
using std::set_difference;
#endif
-using std::set_symmetric_difference;
-using std::transform;
-using std::push_heap;
-using std::pop_heap;
-using std::sort_heap;
using std::distance;
-using std::remove_copy_if;
using std::generate;
+using std::pop_heap;
+using std::push_heap;
+using std::remove_copy_if;
+using std::set_symmetric_difference;
+using std::sort_heap;
+using std::transform;
#ifdef DEBUG_NEW
#define new DEBUG_NEW