From a8c1e597d9f64f10c9001d1d560e86baefe64714 Mon Sep 17 00:00:00 2001 From: bryce Date: Mon, 31 Dec 2007 08:22:26 +0000 Subject: [PATCH] Fix compilation issue with g++3.3 on OS X 10.3.9 (Patch from LP: #178123) --- src/2geom/svg-path.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/2geom/svg-path.h b/src/2geom/svg-path.h index ebc23a9b5..7dd2f31ac 100644 --- a/src/2geom/svg-path.h +++ b/src/2geom/svg-path.h @@ -64,21 +64,21 @@ public: } //TODO: what if _in_path = false? void lineTo(Point p) { - _path.appendNew(p); + _path.template appendNew(p); } void quadTo(Point c, Point p) { - _path.appendNew(c, p); + _path.template appendNew(c, p); } void curveTo(Point c0, Point c1, Point p) { - _path.appendNew(c0, c1, p); + _path.template appendNew(c0, c1, p); } void arcTo(double rx, double ry, double angle, bool large_arc, bool sweep, Point p) { - _path.appendNew(rx, ry, angle, + _path.template appendNew(rx, ry, angle, large_arc, sweep, p); } -- 2.30.2