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>2011-11-24 23:45:30 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:28:43 +0300
commit73e02dfa473887e41811da96f84133d790848551 (patch)
tree50d4663e238991069324c7b42a3e26ee54cb57e1 /indexer/index.cpp
parent1fa5a1f1a63d5cb1989840f11dd2122b334730c8 (diff)
Fix initialization order warning.
Diffstat (limited to 'indexer/index.cpp')
-rw-r--r--indexer/index.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/index.cpp b/indexer/index.cpp
index 1818608684..42536b6d75 100644
--- a/indexer/index.cpp
+++ b/indexer/index.cpp
@@ -5,7 +5,7 @@
MwmValue::MwmValue(string const & name)
- : m_name(name), m_cont(GetPlatform().GetReader(name))
+ : m_cont(GetPlatform().GetReader(name)), m_name(name)
{
m_factory.Load(m_cont);
}