=== modified file 'src/kopftracer2011.cpp' --- src/kopftracer2011.cpp 2013-10-14 18:17:54 +0000 +++ src/kopftracer2011.cpp 2013-11-13 21:24:21 +0000 @@ -369,8 +369,7 @@ { // There are only two values that won't be zero'ed // and one of them has the same value of prev - guintptr aux = guintptr(to_ptr(it)); - aux = (it->adj.top + guintptr aux = (it->adj.top * guintptr(to_ptr(graph.nodeTop(it)))) + (it->adj.topright * guintptr(to_ptr(graph.nodeTopRight(it)))) === modified file 'src/priv/point.h' --- src/priv/point.h 2013-09-23 06:01:54 +0000 +++ src/priv/point.h 2013-11-13 21:17:37 +0000 @@ -30,8 +30,8 @@ template struct Point { - Point() : visible(true) {} - Point(T x, T y) : visible(true), x(x), y(y) {} + Point() : smooth(false), visible(true) {} + Point(T x, T y) : smooth(false), visible(true), x(x), y(y) {} Point(T x, T y, bool smooth) : smooth(smooth), visible(true), x(x), y(y) {} Point operator+(const Point &rhs) const === modified file 'src/priv/splines-kopf2011.h' --- src/priv/splines-kopf2011.h 2013-10-06 01:50:05 +0000 +++ src/priv/splines-kopf2011.h 2013-11-13 21:13:49 +0000 @@ -137,7 +137,7 @@ template Splines::Splines(const HomogeneousSplines &homogeneousSplines, - bool optimize, int nthreads) : + bool optimize, int /*nthreads*/) : _paths(homogeneousSplines.size()), _width(homogeneousSplines.width()), _height(homogeneousSplines.height())