summaryrefslogtreecommitdiffstats
path: root/src/2geom/affine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/affine.cpp')
-rw-r--r--src/2geom/affine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/affine.cpp b/src/2geom/affine.cpp
index 1be5d9fe8..0ef6d2708 100644
--- a/src/2geom/affine.cpp
+++ b/src/2geom/affine.cpp
@@ -22,7 +22,7 @@ namespace Geom {
\return The new Affine.
*/
//NOTE: Inkscape's version is broken, so when including this version, you'll have to search for code with this func
-Affine from_basis(Point const x_basis, Point const y_basis, Point const offset) {
+Affine from_basis(Point const &x_basis, Point const &y_basis, Point const &offset) {
return Affine(x_basis[X], x_basis[Y],
y_basis[X], y_basis[Y],
offset [X], offset [Y]);