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-04-06 20:40:41 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:37:17 +0300
commitdb93edfd4bdeb246f6d2d12a8dd8531613ec59f7 (patch)
tree41a574f5424279d21078786b0116e6ccf3b41c4c /map/address_finder.cpp
parent3df14249480be5f14ed2968a181b064d775b32f4 (diff)
Warning fix.
Diffstat (limited to 'map/address_finder.cpp')
-rw-r--r--map/address_finder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/address_finder.cpp b/map/address_finder.cpp
index 49722de9b1..e4581dcc81 100644
--- a/map/address_finder.cpp
+++ b/map/address_finder.cpp
@@ -60,7 +60,7 @@ namespace
public:
DoGetFeatureInfoBase(m2::PointD const & pt, double eps, int scale)
- : m_pt(pt), m_eps(eps), m_scale(scale)
+ : m_pt(pt), m_scale(scale), m_eps(eps)
{
m_coastType = classif().GetCoastType();
}