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:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-01-13 13:01:01 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:03:32 +0300
commit7da95d1f1cafd4945c2e3b8f38a6d3e8ea5c6250 (patch)
tree5b29edadb08bfa374653bf4f1e65c5ea7c1f72ec /indexer/index.hpp
parentad94413e8581d428c03f22af4ef3382f6241d31c (diff)
enum Format -> enum class Format. Style.
Diffstat (limited to 'indexer/index.hpp')
-rw-r--r--indexer/index.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/index.hpp b/indexer/index.hpp
index 872ebae84f..d27f2c9d76 100644
--- a/indexer/index.hpp
+++ b/indexer/index.hpp
@@ -117,7 +117,7 @@ private:
pValue->m_factory);
// iterate through intervals
- CheckUniqueIndexes checkUnique(header.GetFormat() >= version::v5);
+ CheckUniqueIndexes checkUnique(header.GetFormat() >= version::Format::v5);
MwmId const mwmID = handle.GetId();
for (auto const & i : interval)
@@ -164,7 +164,7 @@ private:
pValue->m_factory);
// iterate through intervals
- CheckUniqueIndexes checkUnique(header.GetFormat() >= version::v5);
+ CheckUniqueIndexes checkUnique(header.GetFormat() >= version::Format::v5);
MwmId const mwmID = handle.GetId();
for (auto const & i : interval)