[search] Fixed memory leaks in house detector.

This commit is contained in:
Yuri Gorshenin 2015-03-11 15:17:37 +03:00 committed by Alex Zolotarev
parent 4fffec0b1c
commit 36f7ffe748
2 changed files with 3 additions and 0 deletions

View file

@ -302,6 +302,8 @@ HouseDetector::HouseDetector(Index const * pIndex)
SetMetres2Mercator(360.0 / 40.0E06);
}
HouseDetector::~HouseDetector() { ClearCaches(); }
void HouseDetector::SetMetres2Mercator(double factor)
{
m_metres2Mercator = factor;

View file

@ -254,6 +254,7 @@ class HouseDetector
public:
HouseDetector(Index const * pIndex);
~HouseDetector();
uint32_t GetBuildingType() const;