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>2015-07-17 17:27:55 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:57:15 +0300
commit5399343271ccb738d2624fb25250ba3e9694e21c (patch)
tree164387f96c2c8a2b8d6e704fe3d74db2d2d8560f /indexer/feature_decl.cpp
parent6b9892d72ad0bbe54a7a7f7ef7664e517c8d54fc (diff)
Review fixes.
Diffstat (limited to 'indexer/feature_decl.cpp')
-rw-r--r--indexer/feature_decl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature_decl.cpp b/indexer/feature_decl.cpp
index e3df79d2f6..c697f6948c 100644
--- a/indexer/feature_decl.cpp
+++ b/indexer/feature_decl.cpp
@@ -6,6 +6,6 @@
string DebugPrint(FeatureID const & id)
{
ostringstream ss;
- ss << "{ " << DebugPrint(id.m_mwmId) << ", " << id.m_ind << " }";
+ ss << "{ " << DebugPrint(id.m_mwmId) << ", " << id.m_index << " }";
return ss.str();
}