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:
authorAlex Zolotarev <alex@maps.me>2016-03-14 15:23:06 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:53:10 +0300
commit8681a7e3499decdffa902ac7b60620ab5a768fb3 (patch)
tree4c36ce7ab856dfecae386d05224b4bd87645370b /indexer/editable_map_object.hpp
parentcea5108b08ba30dcca61afd98d30d71abc311d78 (diff)
[editor] Fixed undefined behavior due to referencing uninitialized variable FeatureType::m_bCommonParsed.
Diffstat (limited to 'indexer/editable_map_object.hpp')
-rw-r--r--indexer/editable_map_object.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indexer/editable_map_object.hpp b/indexer/editable_map_object.hpp
index d5bdc92a14..3331097e7c 100644
--- a/indexer/editable_map_object.hpp
+++ b/indexer/editable_map_object.hpp
@@ -90,6 +90,9 @@ public:
void SetRawOSMCuisines(string const & cuisine);
void SetOpeningHours(string const & openingHours);
+ /// Special mark that it's a point feature, not area or line.
+ void SetPointType();
+
private:
string m_houseNumber;
string m_street;