forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
067e66e93d
commit
a3a9409abb
2 changed files with 3 additions and 4 deletions
|
@ -1113,7 +1113,7 @@ void Geocoder::LimitedSearch(BaseContext & ctx, FeaturesFilter const & filter,
|
|||
|
||||
auto const search = [this, &ctx, ¢ers]() {
|
||||
GreedilyMatchStreets(ctx, centers);
|
||||
MatchPOIsAndBuildings(ctx, 0 /* curToken */);
|
||||
MatchPOIsAndBuildings(ctx, 0 /* curToken */, CBV::GetFull());
|
||||
};
|
||||
|
||||
WithPostcodes(ctx, search);
|
||||
|
@ -1274,7 +1274,7 @@ void Geocoder::CreateStreetsLayerAndMatchLowerLayers(BaseContext & ctx,
|
|||
ScopedMarkTokens mark(ctx.m_tokens, BaseContext::TOKEN_TYPE_STREET, prediction.m_tokenRange);
|
||||
size_t const numEmitted = ctx.m_numEmitted;
|
||||
|
||||
MatchPOIsAndBuildings(ctx, 0 /* curToken */);
|
||||
MatchPOIsAndBuildings(ctx, 0 /* curToken */, CBV::GetFull());
|
||||
|
||||
// A relaxed best effort parse: at least show the street if we can find one.
|
||||
if (numEmitted == ctx.m_numEmitted && ctx.SkipUsedTokens(0) != ctx.m_numTokens)
|
||||
|
|
|
@ -256,8 +256,7 @@ private:
|
|||
// Tries to find all paths in a search tree, where each edge is
|
||||
// marked with some substring of the query tokens. These paths are
|
||||
// called "layer sequence" and current path is stored in |m_layers|.
|
||||
void MatchPOIsAndBuildings(BaseContext & ctx, size_t curToken,
|
||||
CBV const & filter = CBV::GetFull());
|
||||
void MatchPOIsAndBuildings(BaseContext & ctx, size_t curToken, CBV const & filter);
|
||||
|
||||
// Returns true if current path in the search tree (see comment for
|
||||
// MatchPOIsAndBuildings()) looks sane. This method is used as a fast
|
||||
|
|
Loading…
Add table
Reference in a new issue