From 06f656de56abe7ab24ad14e4b96fc812706c3df7 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Mon, 26 Feb 2018 19:32:59 +0300 Subject: [PATCH] Review fixes. --- search/result.cpp | 1 - search/result.hpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/search/result.cpp b/search/result.cpp index e8790c4b20..a26f84a4be 100644 --- a/search/result.cpp +++ b/search/result.cpp @@ -5,7 +5,6 @@ #include "base/string_utils.hpp" -#include #include using namespace std; diff --git a/search/result.hpp b/search/result.hpp index a0926def4c..1a2b0dee35 100644 --- a/search/result.hpp +++ b/search/result.hpp @@ -108,7 +108,7 @@ public: std::pair const & GetHighlightRange(size_t idx) const; size_t GetHighlightRangesCount() const { return m_hightlightRanges.size(); } - void PrependCity(string const & name); + void PrependCity(std::string const & name); int32_t GetPositionInResults() const { return m_positionInResults; } void SetPositionInResults(int32_t pos) { m_positionInResults = pos; } @@ -124,7 +124,7 @@ public: // Returns a representation of this result that is sent to the // statistics servers and later used to measure the quality of our // search engine. - string ToStringForStats() const; + std::string ToStringForStats() const; private: Type m_resultType;