From 93511da6d6a059d142978a557719ede7657c1906 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Tue, 13 Sep 2016 17:45:50 +0300 Subject: [PATCH] Adding minmax_element to algorithm.hpp --- std/algorithm.hpp | 1 + 1 file changed, 1 insertion(+) 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;