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-11-05 02:56:55 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:32:16 +0300
commitdfb1644047eee71484007806b53457ed4f4f03ff (patch)
tree4a4b9df86b67ab8f591238feeff8f285a7ae864c /indexer/coding_params.cpp
parent39818e3e081419e1307017bf90acc9a886eb64b8 (diff)
Minor refaсtoring: removed CoordPointT typedef to avoid disambiguate.
Diffstat (limited to 'indexer/coding_params.cpp')
-rw-r--r--indexer/coding_params.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/coding_params.cpp b/indexer/coding_params.cpp
index 9165779695..67484de690 100644
--- a/indexer/coding_params.cpp
+++ b/indexer/coding_params.cpp
@@ -26,7 +26,7 @@ namespace serial
void CodingParams::SetBasePoint(m2::PointD const & pt)
{
- m_BasePoint = PointD2PointU(pt.x, pt.y, m_CoordBits);
+ m_BasePoint = PointD2PointU(pt, m_CoordBits);
m_BasePointUint64 = m2::PointUToUint64(m_BasePoint);
}
}