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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-06-04 17:00:32 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:08:34 +0300
commitfd8c633f7b3893eb528d5fd53b2fc9751fc515a8 (patch)
tree0b4051f285cc31585e6d4b8629921ffe5beacce5 /geometry
parent92bd2021230e4e4e815fd6df3020b3dc49b7637d (diff)
Added route tracks rendering
Diffstat (limited to 'geometry')
-rw-r--r--geometry/polyline2d.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/geometry/polyline2d.hpp b/geometry/polyline2d.hpp
index 6a56b17073..d10c1cccf5 100644
--- a/geometry/polyline2d.hpp
+++ b/geometry/polyline2d.hpp
@@ -89,10 +89,7 @@ public:
return m_points[idx];
}
- vector<Point<T>> const & GetPoints() const
- {
- return m_points;
- }
+ vector<Point<T> > const & GetPoints() const { return m_points; }
friend string DebugPrint(PolylineT<T> const & p)
{