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:
authorvng <viktor.govako@gmail.com>2013-07-19 15:01:37 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:59:04 +0300
commitce4870393dd3902147ddfd29a81dc50af23eff18 (patch)
tree32693ce116f18c148820b581d9a13122e45a3661 /indexer/classificator.hpp
parent5aaee9909f78245f041fcc24cfaaf26f4506dbd3 (diff)
Fixes according to code review.
Diffstat (limited to 'indexer/classificator.hpp')
-rw-r--r--indexer/classificator.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp
index a2be356c7f..dda18d257c 100644
--- a/indexer/classificator.hpp
+++ b/indexer/classificator.hpp
@@ -114,7 +114,7 @@ public:
}
}
- typedef bitset<UPPER_STYLE_SCALE+1> visible_mask_t;
+ typedef bitset<scales::UPPER_STYLE_SCALE+1> visible_mask_t;
visible_mask_t GetVisibilityMask() const { return m_visibility; }
void SetVisibilityMask(visible_mask_t mask) { m_visibility = mask; }
void SetVisibilityOnScale(const bool isVisible, const int scale) { m_visibility[scale] = isVisible; }