From 0d723067ac147b6b975f6ad466958d1bd30adc0d Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sun, 18 Sep 2011 23:18:08 +0200 Subject: [PATCH] Add remove_if to the using clause at algorithm.hpp --- std/algorithm.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/std/algorithm.hpp b/std/algorithm.hpp index eff073c930..2a60b83e61 100644 --- a/std/algorithm.hpp +++ b/std/algorithm.hpp @@ -23,6 +23,7 @@ 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;