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:
authorExMix <rahuba.youri@mapswithme.com>2014-07-30 15:44:09 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:22:49 +0300
commit64b07cb6dd0d2fe5685d89a73a4f51dafbdb4e11 (patch)
treedd2cabb4af67306c44bf52ed72e840191bdf6592 /geometry/spline.cpp
parent7a3c714e48697e44f2be66d27e90981b59b06959 (diff)
[drape] move drape into dp namespace
Diffstat (limited to 'geometry/spline.cpp')
-rw-r--r--geometry/spline.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/geometry/spline.cpp b/geometry/spline.cpp
index f6702938df..c8482088de 100644
--- a/geometry/spline.cpp
+++ b/geometry/spline.cpp
@@ -31,6 +31,12 @@ Spline const & Spline::operator = (Spline const & spl)
return *this;
}
+Spline::iterator::iterator()
+ : m_checker(false)
+ , m_spl(NULL)
+ , m_index(0)
+ , m_dist(0) {}
+
void Spline::iterator::Attach(Spline const & S)
{
m_spl = &S;