Style fixes.

This commit is contained in:
Yuri Gorshenin 2016-07-07 14:13:08 +03:00
parent 6c8f97bb0b
commit 16a991d75b
6 changed files with 10 additions and 13 deletions

View file

@ -323,8 +323,7 @@ void BuildRoutingIndex(string const & baseDir, string const & countryName, strin
Index::FeaturesLoaderGuard loader(index, p.first);
if (!loader.GetFeatureByIndex(fID, ft))
{
LOG(LWARNING,
("Can't read feature for way:", seg.wayId, "probably map is damaged or deleted."));
LOG(LWARNING, ("Can't read feature with id:", fID, "for way:", seg.wayId));
continue;
}

View file

@ -479,7 +479,7 @@ search::AddressInfo Framework::GetAddressInfoAtPoint(m2::PointD const & pt) cons
search::AddressInfo Framework::GetFeatureAddressInfo(FeatureID const & fid) const
{
FeatureType ft;
if (!GetFeatureByID(fid, true /* parse */, ft))
if (!GetFeatureByID(fid, ft))
return {};
return GetFeatureAddressInfo(ft);
}

View file

@ -1350,7 +1350,7 @@ void Framework::LoadSearchResultMetadata(search::Result & res) const
// TODO @yunikkk refactor to format search result metadata accordingly with place_page::Info
FeatureType ft;
if (!GetFeatureByID(id, true /* parse */, ft))
if (!GetFeatureByID(id, ft))
return;
search::ProcessMetadata(ft, res.m_metadata);
@ -1900,7 +1900,7 @@ unique_ptr<FeatureType> Framework::GetFeatureAtPoint(m2::PointD const & mercator
return poi ? move(poi) : (area ? move(area) : move(line));
}
bool Framework::GetFeatureByID(FeatureID const & fid, bool parse, FeatureType & ft) const
bool Framework::GetFeatureByID(FeatureID const & fid, FeatureType & ft) const
{
ASSERT(fid.IsValid(), ());
@ -1908,8 +1908,7 @@ bool Framework::GetFeatureByID(FeatureID const & fid, bool parse, FeatureType &
if (!guard.GetFeatureByIndex(fid.m_index, ft))
return false;
if (parse)
ft.ParseEverything();
ft.ParseEverything();
return true;
}
@ -2616,7 +2615,7 @@ bool Framework::ParseEditorDebugCommand(search::SearchParams const & params)
FeatureID const & fid = edit.first;
FeatureType ft;
if (!GetFeatureByID(fid, true /* parse */, ft))
if (!GetFeatureByID(fid, ft))
{
LOG(LERROR, ("Feature can't be loaded:", fid));
return true;
@ -2806,7 +2805,7 @@ bool Framework::GetEditableMapObject(FeatureID const & fid, osm::EditableMapObje
return false;
FeatureType ft;
if (!GetFeatureByID(fid, true /* parse */, ft))
if (!GetFeatureByID(fid, ft))
return false;
emo.SetFromFeatureType(ft);
@ -2967,7 +2966,7 @@ void Framework::DeleteFeature(FeatureID const & fid) const
// TODO(AlexZ): Use FeatureID in the editor interface.
FeatureType ft;
if (!GetFeatureByID(fid, true /* parse */, ft))
if (!GetFeatureByID(fid, ft))
return;
osm::Editor::Instance().DeleteFeature(ft);

View file

@ -541,7 +541,7 @@ public:
/// Set parse to false if you don't need all feature fields ready.
/// TODO(AlexZ): Refactor code which uses this method to get rid of it.
/// FeatureType instances shoud not be used outside ForEach* core methods.
WARN_UNUSED_RESULT bool GetFeatureByID(FeatureID const & fid, bool parse, FeatureType & ft) const;
WARN_UNUSED_RESULT bool GetFeatureByID(FeatureID const & fid, FeatureType & ft) const;
void MemoryWarning();
void EnterBackground();

View file

@ -59,7 +59,6 @@ UNIT_TEST(RussiaMoscowSevTushinoParkBicycleOnePointTurnTest)
TRouteResult const routeResult =
integration::CalculateRoute(integration::GetBicycleComponents(), point, {0.0, 0.0}, point);
Route const & route = *routeResult.first;
IRouter::ResultCode const result = routeResult.second;
TEST_EQUAL(result, IRouter::IRouter::RouteNotFound, ());
}

View file

@ -256,7 +256,7 @@ public:
string name;
string country;
if (LoadFeature(res1.GetId(), ft, center, name, country))
if (!LoadFeature(res1.GetId(), ft, center, name, country))
return unique_ptr<PreResult2>();
auto res2 = make_unique<PreResult2>(ft, &res1, center, m_ranker.m_params.m_position /* pivot */,