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>2012-05-24 15:46:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:39:05 +0300
commit8378763418a36a378f4a5faf7a9705e9b7951b1c (patch)
treeaa3df111abb671e6658beadd819a56815e563c72 /indexer/classificator.cpp
parent71dfe1b9e3ac1a161c2bc830ec5847f407eaa863 (diff)
Fix some debug print.
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index e671978bc9..1666b22299 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -128,9 +128,9 @@ void ClassifObject::VisSavePolicy::Serialize(ostream & s) const
void ClassifObject::VisLoadPolicy::Name(string const & name) const
{
- static_cast<void>(name);
+ UNUSED_VALUE(name);
// Assume that classificator doesn't changed for saved visibility.
- ASSERT ( name == Current()->m_name, () );
+ ASSERT_EQUAL ( name, Current()->m_name, () );
}
void ClassifObject::VisLoadPolicy::Serialize(string const & s)