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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-09-13 17:45:50 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-09-14 17:37:20 +0300
commit93511da6d6a059d142978a557719ede7657c1906 (patch)
tree2254b1829fa34cad8726b5399e0709b4eadd140c /std
parent46193618b6d2b93c533149c40b775f0db96e2e08 (diff)
Adding minmax_element to algorithm.hpp
Diffstat (limited to 'std')
-rw-r--r--std/algorithm.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/std/algorithm.hpp b/std/algorithm.hpp
index 79b2d51384..8ad592f5d8 100644
--- a/std/algorithm.hpp
+++ b/std/algorithm.hpp
@@ -25,6 +25,7 @@ using std::max;
using std::max_element;
using std::min;
using std::min_element;
+using std::minmax_element;
using std::next_permutation;
using std::none_of;
using std::nth_element;