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>2014-10-01 16:50:36 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:29:13 +0300
commit730f0078ae99993ac440e20bc254ccc2835c90d3 (patch)
treea28acd624e6c6d6b2bd15e912d8a4f2460ccf4c0 /indexer/feature_decl.cpp
parent937250e21601d8ee5790b622543b3177a8c866a7 (diff)
Removed duplicating enums.
Diffstat (limited to 'indexer/feature_decl.cpp')
-rw-r--r--indexer/feature_decl.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/indexer/feature_decl.cpp b/indexer/feature_decl.cpp
new file mode 100644
index 0000000000..69ccfcaaab
--- /dev/null
+++ b/indexer/feature_decl.cpp
@@ -0,0 +1,11 @@
+#include "feature_decl.hpp"
+
+#include "../std/sstream.hpp"
+
+
+string DebugPrint(FeatureID const & id)
+{
+ ostringstream ss;
+ ss << "{ " << id.m_mwm << ", " << id.m_offset << " }";
+ return ss.str();
+}