summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2007-12-31 08:22:26 +0000
committerbryce <bryce@users.sourceforge.net>2007-12-31 08:22:26 +0000
commit2136cf14de5f5978b09b64291206b0580f170d5f (patch)
tree999951a2d317509cccee2c4f00094ce3f6f50647
parentMan page entry for --query-all option (diff)
downloadinkscape-2136cf14de5f5978b09b64291206b0580f170d5f.tar.gz
inkscape-2136cf14de5f5978b09b64291206b0580f170d5f.zip
Fix compilation issue with g++3.3 on OS X 10.3.9
(Patch from LP: #178123) (bzr r4345)
-rw-r--r--src/2geom/svg-path.h8
1 files 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<LineSegment>(p);
+ _path.template appendNew<LineSegment>(p);
}
void quadTo(Point c, Point p) {
- _path.appendNew<QuadraticBezier>(c, p);
+ _path.template appendNew<QuadraticBezier>(c, p);
}
void curveTo(Point c0, Point c1, Point p) {
- _path.appendNew<CubicBezier>(c0, c1, p);
+ _path.template appendNew<CubicBezier>(c0, c1, p);
}
void arcTo(double rx, double ry, double angle,
bool large_arc, bool sweep, Point p)
{
- _path.appendNew<SVGEllipticalArc>(rx, ry, angle,
+ _path.template appendNew<SVGEllipticalArc>(rx, ry, angle,
large_arc, sweep, p);
}