Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'search/house_detector.hpp')
-rw-r--r--search/house_detector.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/house_detector.hpp b/search/house_detector.hpp
index cbd8131475..d6fecd3d8f 100644
--- a/search/house_detector.hpp
+++ b/search/house_detector.hpp
@@ -113,9 +113,9 @@ public:
vector<HouseProjection> m_houses;
double m_length; /// Length in mercator
int m_number; /// Some ordered number after merging
- bool m_housesReaded;
+ bool m_housesRead;
- Street() : m_length(0.0), m_number(-1), m_housesReaded(false) {}
+ Street() : m_length(0.0), m_number(-1), m_housesRead(false) {}
void Reverse();
void SortHousesProjection();
@@ -146,7 +146,7 @@ public:
string const & GetDbgName() const;
string const & GetName() const;
- bool IsHousesReaded() const;
+ bool IsHousesRead() const;
void FinishReadingHouses();
HouseProjection const * GetHousePivot(bool isOdd, bool & sign) const;