forked from organicmaps/organicmaps
[search] Fixed memory leaks in house detector.
This commit is contained in:
parent
4fffec0b1c
commit
36f7ffe748
2 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -254,6 +254,7 @@ class HouseDetector
|
|||
|
||||
public:
|
||||
HouseDetector(Index const * pIndex);
|
||||
~HouseDetector();
|
||||
|
||||
uint32_t GetBuildingType() const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue