forked from organicmaps/organicmaps
PR fixes.
This commit is contained in:
parent
cdb51bc8e7
commit
b329ee53bf
2 changed files with 3 additions and 4 deletions
|
@ -27,7 +27,7 @@ namespace
|
|||
}
|
||||
|
||||
// Strange asserts near Cupertino test
|
||||
UNIT_TEST(CaliforniaCupertionFindPhantomAssetText)
|
||||
UNIT_TEST(CaliforniaCupertinoFindPhantomAssertTest)
|
||||
{
|
||||
integration::CalculateRouteAndTestRouteLength(integration::GetAllMaps(),
|
||||
{-122.03448, 40.29689}, {0., 0.},
|
||||
|
|
|
@ -426,13 +426,12 @@ void OsrmFtSegBackwardIndex::Construct(OsrmFtSegMapping & mapping, const uint32_
|
|||
TNodesList & nodesList = m_nodeIds.back();
|
||||
size_t const foundNodes = nodesList.size();
|
||||
sort(nodesList.begin(), nodesList.end());
|
||||
auto const endIt = unique(nodesList.begin(), nodesList.end());
|
||||
nodesList.erase(endIt, nodesList.end());
|
||||
nodesList.erase(unique(nodesList.begin(), nodesList.end()), nodesList.end());
|
||||
removedNodes += foundNodes - nodesList.size();
|
||||
}
|
||||
}
|
||||
|
||||
LOG(LINFO, ("Backward index constructor removes", removedNodes, "duplicates."));
|
||||
LOG(LDEBUG, ("Backward index constructor removed", removedNodes, "duplicates."));
|
||||
|
||||
// Pack and save index
|
||||
succinct::rs_bit_vector(inIndex).swap(m_rankIndex);
|
||||
|
|
Loading…
Add table
Reference in a new issue