Review fixes.

This commit is contained in:
Maxim Pimenov 2018-02-26 19:32:59 +03:00 committed by Vlad Mihaylenko
parent e18aa99081
commit 06f656de56
2 changed files with 2 additions and 3 deletions

View file

@ -5,7 +5,6 @@
#include "base/string_utils.hpp"
#include <algorithm>
#include <sstream>
using namespace std;

View file

@ -108,7 +108,7 @@ public:
std::pair<uint16_t, uint16_t> 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;