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/search_tests/algos_tests.cpp')
-rw-r--r--search/search_tests/algos_tests.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/search/search_tests/algos_tests.cpp b/search/search_tests/algos_tests.cpp
index db4c4cb4dc..4c7d33afce 100644
--- a/search/search_tests/algos_tests.cpp
+++ b/search/search_tests/algos_tests.cpp
@@ -2,13 +2,14 @@
#include "search/algos.hpp"
-#include "std/algorithm.hpp"
-#include "std/iterator.hpp"
+#include <algorithm>
+#include <iterator>
+#include <vector>
+using namespace std;
namespace
{
-
struct CompWithEqual
{
bool Less(int i1, int i2) const { return i1 <= i2; }
@@ -22,8 +23,7 @@ void TestLongestSequence(int in[], size_t inSz, int eta[])
reverse(res.begin(), res.end());
TEST(equal(res.begin(), res.end(), eta), (res));
}
-
-}
+} // namespace
UNIT_TEST(LS_Smoke)
{