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>2016-03-24 18:55:27 +0300
committervng <viktor.govako@gmail.com>2016-03-24 20:07:10 +0300
commitb1b61d8635390d32fa5e41e64599a9afeae28cb7 (patch)
treef15b5db0dd13fa07017cb2f85778932aa9ef9eb2 /indexer/feature_data.cpp
parent9d385635562e7bdfa761944b013097dece86d597 (diff)
[generator] Added DebugPrint function.
Diffstat (limited to 'indexer/feature_data.cpp')
-rw-r--r--indexer/feature_data.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp
index 53492f84a9..c4284fb55e 100644
--- a/indexer/feature_data.cpp
+++ b/indexer/feature_data.cpp
@@ -526,9 +526,9 @@ string DebugPrint(FeatureParams const & p)
{
Classificator const & c = classif();
- string res = "Types";
+ string res = "Types: ";
for (size_t i = 0; i < p.m_Types.size(); ++i)
- res += (" : " + c.GetReadableObjectName(p.m_Types[i]));
+ res = res + c.GetReadableObjectName(p.m_Types[i]) + "; ";
return (res + p.DebugString());
}