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/house_detector_tests.cpp')
-rw-r--r--search/search_tests/house_detector_tests.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/search/search_tests/house_detector_tests.cpp b/search/search_tests/house_detector_tests.cpp
index 279c1e7099..c0dea587e0 100644
--- a/search/search_tests/house_detector_tests.cpp
+++ b/search/search_tests/house_detector_tests.cpp
@@ -17,10 +17,14 @@
#include "base/logging.hpp"
-#include "std/iostream.hpp"
-#include "std/fstream.hpp"
-
-
+#include <algorithm>
+#include <cstddef>
+#include <fstream>
+#include <map>
+#include <string>
+#include <vector>
+
+using namespace std;
using platform::LocalCountryFile;
class StreetIDsByName
@@ -338,7 +342,7 @@ string GetStreetKey(string const & name)
{
return strings::ToUtf8(search::GetStreetNameAsKey(name, false /* ignoreStreetSynonyms */));
}
-} // namespace
+} // namespace
UNIT_TEST(HS_StreetKey)
{
@@ -351,7 +355,6 @@ UNIT_TEST(HS_StreetKey)
namespace
{
-
struct Address
{
string m_streetKey;
@@ -368,8 +371,7 @@ void swap(Address & a1, Address & a2)
std::swap(a1.m_lat, a2.m_lat);
std::swap(a1.m_lon, a2.m_lon);
}
-
-}
+} // namespace
UNIT_TEST(HS_MWMSearch)
{