aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/jau/basic_algos.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jau/basic_algos.hpp b/include/jau/basic_algos.hpp
index d368a61..06546a8 100644
--- a/include/jau/basic_algos.hpp
+++ b/include/jau/basic_algos.hpp
@@ -174,7 +174,7 @@ namespace jau {
template<class ForwardIt, class UnaryPredicate>
ForwardIt remove_if(ForwardIt first, ForwardIt last, UnaryPredicate p)
{
- first = find_if(first, last, p);
+ first = jau::find_if(first, last, p);
if (first != last) {
for(ForwardIt i = first; ++i != last; ) {
if (!p(*i)) {