Review fixes.

This commit is contained in:
Yuri Gorshenin 2017-12-28 11:05:41 +03:00 committed by Vladimir Byko-Ianko
parent a4e3446245
commit 77f22338bb
4 changed files with 10 additions and 4 deletions

View file

@ -85,7 +85,7 @@ SearchAPI::SearchAPI(Index & index, storage::Storage const & storage,
, m_infoGetter(infoGetter)
, m_delegate(delegate)
, m_engine(m_index, GetDefaultCategories(), m_infoGetter,
Engine::Params(languages::GetCurrentOrig() /* locale */, 1 /* params.m_numThreads */))
Engine::Params(languages::GetCurrentTwine() /* locale */, 1 /* params.m_numThreads */))
{
}

View file

@ -578,8 +578,8 @@ void Ranker::MatchForSuggestions(strings::UniString const & token, int8_t locale
for (auto const & suggest : m_suggests)
{
strings::UniString const & s = suggest.m_name;
if (suggest.m_prefixLength <= token.size() &&
token != s // do not push suggestion if it already equals to token
if (suggest.m_prefixLength <= token.size()
&& token != s // do not push suggestion if it already equals to token
&& suggest.m_locale == locale // push suggestions only for needed language
&& strings::StartsWith(s, token))
{

View file

@ -2,6 +2,7 @@
#include "storage/country_decl.hpp"
#include "base/logging.hpp"
#include "base/stl_helpers.hpp"
#include "base/string_utils.hpp"
@ -25,6 +26,9 @@ void GetPathToRoot(storage::TCountryId const & id, storage::TCountryTree const &
vector<storage::TCountryTree::Node const *> nodes;
countries.Find(id, nodes);
if (nodes.empty())
LOG(LERROR, ("Can't find node in the countries tree for:", id));
if (nodes.size() != 1 || nodes[0]->IsRoot())
return;
@ -66,7 +70,7 @@ string RegionInfoGetter::GetLocalizedFullName(storage::TCountryId const & id) co
return strings::JoinStrings(parts, ", ");
// Tries to get at least localized name for |id|, if |id| is a
// discussed territory.
// disputed territory.
auto name = GetLocalizedCountryName(id);
if (!name.empty())
return name;

View file

@ -2,6 +2,8 @@
#include "search/region_info_getter.hpp"
#include <string>
using namespace search;
namespace