From 3b1ee3b061dc6a36a68a5af08eb3112a0a2115cc Mon Sep 17 00:00:00 2001 From: johanengelen Date: Thu, 12 Jun 2008 20:18:53 +0000 Subject: [PATCH] update 2geom --- src/2geom/matrix.h | 1 + 1 file changed, 1 insertion(+) 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) { -- 2.30.2