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 'generator/booking_quality_check/booking_addr_match.cpp')
-rw-r--r--generator/booking_quality_check/booking_addr_match.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/generator/booking_quality_check/booking_addr_match.cpp b/generator/booking_quality_check/booking_addr_match.cpp
index e638dbf0c9..8b491b6144 100644
--- a/generator/booking_quality_check/booking_addr_match.cpp
+++ b/generator/booking_quality_check/booking_addr_match.cpp
@@ -28,10 +28,10 @@
#include "platform/local_country_file_utils.hpp"
#include "platform/platform.hpp"
-#include "std/fstream.hpp"
-#include "std/iostream.hpp"
-#include "std/numeric.hpp"
-#include "std/shared_ptr.hpp"
+#include <fstream>
+#include <iostream>
+#include <memory>
+#include <numeric>
#include "3party/gflags/src/gflags/gflags.h"
@@ -55,7 +55,7 @@ int main(int argc, char * argv[])
Platform & platform = GetPlatform();
- string countriesFile = COUNTRIES_FILE;
+ std::string countriesFile = COUNTRIES_FILE;
if (!FLAGS_user_resource_path.empty())
{
platform.SetResourceDir(FLAGS_user_resource_path);
@@ -90,14 +90,14 @@ int main(int argc, char * argv[])
if (hotel.HasAddresParts())
{
++matchedNum;
- cout << "[" << i << "/" << bookingDataset.Size() << "] Hotel: " << hotel.address
+ std::cout << "[" << i << "/" << bookingDataset.Size() << "] Hotel: " << hotel.address
<< " AddLoc: " << hotel.translations << " --> " << hotel.street << " "
- << hotel.houseNumber << endl;
+ << hotel.houseNumber << std::endl;
}
}
- cout << "Num of hotels: " << bookingDataset.Size() << " matched: " << matchedNum
- << " Empty addresses: " << emptyAddr << endl;
+ std::cout << "Num of hotels: " << bookingDataset.Size() << " matched: " << matchedNum
+ << " Empty addresses: " << emptyAddr << std::endl;
return 0;
}