From 24cd06a9b2693af91323234cb936240bf4114f68 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sun, 25 Sep 2011 03:38:41 +0200 Subject: [PATCH] Add partial_sort to algorithm.hpp. --- std/algorithm.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/std/algorithm.hpp b/std/algorithm.hpp index 2a60b83e61..803e110249 100644 --- a/std/algorithm.hpp +++ b/std/algorithm.hpp @@ -17,6 +17,7 @@ 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;