forked from organicmaps/organicmaps
[generator] remove useless argument
This commit is contained in:
parent
9247d783cc
commit
755ca0edac
2 changed files with 3 additions and 4 deletions
|
@ -168,7 +168,7 @@ void CamerasInfoCollector::Camera::FindClosestSegment(FrozenDataSource const & d
|
|||
if (!m_data.m_ways.empty() && FindClosestSegmentInInnerWays(dataSource, mwmId))
|
||||
return;
|
||||
|
||||
FindClosestSegmentWithGeometryIndex(dataSource, mwmId);
|
||||
FindClosestSegmentWithGeometryIndex(dataSource);
|
||||
}
|
||||
|
||||
|
||||
|
@ -195,8 +195,7 @@ bool CamerasInfoCollector::Camera::FindClosestSegmentInInnerWays(FrozenDataSourc
|
|||
return !m_data.m_ways.empty();
|
||||
}
|
||||
|
||||
void CamerasInfoCollector::Camera::FindClosestSegmentWithGeometryIndex(FrozenDataSource const & dataSource,
|
||||
MwmSet::MwmId const & mwmId)
|
||||
void CamerasInfoCollector::Camera::FindClosestSegmentWithGeometryIndex(FrozenDataSource const & dataSource)
|
||||
{
|
||||
uint32_t bestFeatureId = 0;
|
||||
uint32_t bestSegmentId = 0;
|
||||
|
|
|
@ -64,7 +64,7 @@ private:
|
|||
bool FindClosestSegmentInInnerWays(FrozenDataSource const & dataSource, MwmSet::MwmId const & mwmId);
|
||||
|
||||
/// \brief Use when |m_ways| is empty. Try to FindClosestSegment using geometry index.
|
||||
void FindClosestSegmentWithGeometryIndex(FrozenDataSource const & dataSource, MwmSet::MwmId const & mwmId);
|
||||
void FindClosestSegmentWithGeometryIndex(FrozenDataSource const & dataSource);
|
||||
|
||||
// Returns empty object, if current feature - |wayId| is not the car road.
|
||||
// Otherwise returns id of segment from feature with id - |wayId|, which starts (or ends) at camera's
|
||||
|
|
Loading…
Add table
Reference in a new issue