From: johanengelen Date: Thu, 12 Jun 2008 20:18:53 +0000 (+0000) Subject: update 2geom X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3b1ee3b061dc6a36a68a5af08eb3112a0a2115cc;p=inkscape.git update 2geom --- diff --git a/src/2geom/matrix.h b/src/2geom/matrix.h index c9f244d62..ba4451265 100644 --- a/src/2geom/matrix.h +++ b/src/2geom/matrix.h @@ -105,6 +105,7 @@ class Matrix { }; Matrix operator*(Matrix const &a, Matrix const &b); +inline Matrix &operator*=(Matrix &a, Matrix const &b) { a = a * b; return a; } /** A function to print out the Matrix (for debugging) */ inline std::ostream &operator<< (std::ostream &out_file, const Geom::Matrix &m) {