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
diff options
context:
space:
mode:
Diffstat (limited to 'search/types_skipper.cpp')
-rw-r--r--search/types_skipper.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/search/types_skipper.cpp b/search/types_skipper.cpp
index 050bd56e4e..da87bfd248 100644
--- a/search/types_skipper.cpp
+++ b/search/types_skipper.cpp
@@ -4,7 +4,8 @@
#include "indexer/feature_data.hpp"
#include "indexer/ftypes_matcher.hpp"
-#include "std/algorithm.hpp"
+#include <algorithm>
+
#include "std/initializer_list.hpp"
namespace search
@@ -96,6 +97,6 @@ bool TypesSkipper::IsCountryOrState(feature::TypesHolder const & types) const
// static
bool TypesSkipper::HasType(Cont const & v, uint32_t t)
{
- return find(v.begin(), v.end(), t) != v.end();
+ return std::find(v.begin(), v.end(), t) != v.end();
}
} // namespace search