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 Yershov <yershov@corp.mail.ru>2015-01-14 20:59:22 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:36:11 +0300
commit5f515c98c2a7c92a4257de1de97890615c2bbd88 (patch)
treecb33c26a803e5407e79e054e53cd92cd94a7627b /indexer/classificator.hpp
parenta44338d9a2b3c72b38591036816b0794d26156e7 (diff)
Change XMLElement name as string to tagKey as enum
Unified work with XML tags in both stage parsers Change storage method for XML attributes
Diffstat (limited to 'indexer/classificator.hpp')
-rw-r--r--indexer/classificator.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp
index 253754bf66..66d33c065f 100644
--- a/indexer/classificator.hpp
+++ b/indexer/classificator.hpp
@@ -169,9 +169,9 @@ class Classificator : private noncopyable
public:
- typedef const char * Path1T[1];
- typedef const char * Path2T[2];
- typedef const char * Path3T[3];
+ typedef const char * const Path1T[1];
+ typedef const char * const Path2T[2];
+ typedef const char * const Path3T[3];
Classificator() : m_root("world") {}