Fix possible bug in feature reading.

This commit is contained in:
vng 2013-09-13 21:29:37 +03:00 committed by Alex Zolotarev
parent c53c7190e0
commit 2ae5256135
2 changed files with 7 additions and 2 deletions

View file

@ -308,6 +308,12 @@ uint32_t FeatureType::GetPopulation() const
return (r == 0 ? 1 : static_cast<uint32_t>(pow(1.1, r)));
}
string FeatureType::GetRoadNumber() const
{
ParseCommon();
return m_Params.ref;
}
namespace
{
class DoCalcDistance

View file

@ -243,8 +243,7 @@ public:
uint8_t GetRank() const;
uint32_t GetPopulation() const;
inline string GetRoadNumber() const { return m_Params.ref; }
string GetRoadNumber() const;
double GetDistance(m2::PointD const & pt, int scale) const;