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:
authorIlya Grechuhin <i.grechuhin@gmail.com>2016-07-06 13:49:16 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2016-07-07 14:23:14 +0300
commitf7aafa00e27d85f4d0f2b4c504d9063d392b41f8 (patch)
tree42a642688dfef0e8dea4d9fc8ebacd185dc75993 /indexer/map_object.cpp
parentaae90b0081d9b38fe2d0d58ee63445a8e58f6462 (diff)
[omim] Refactored measurement_utils.
Diffstat (limited to 'indexer/map_object.cpp')
-rw-r--r--indexer/map_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp
index 54902ced19..5f75841144 100644
--- a/indexer/map_object.cpp
+++ b/indexer/map_object.cpp
@@ -166,7 +166,7 @@ string MapObject::GetElevationFormatted() const
{
double value;
if (strings::to_double(m_metadata.Get(feature::Metadata::FMD_ELE), value))
- return MeasurementUtils::FormatAltitude(value);
+ return measurement_utils::FormatAltitude(value);
else
LOG(LWARNING,
("Invalid metadata for elevation:", m_metadata.Get(feature::Metadata::FMD_ELE)));