From 37cd147ee030ba0600260394781cad278e6f392d Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Thu, 12 Jun 2008 20:18:53 +0000 Subject: update 2geom (bzr r5914) --- src/2geom/matrix.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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) { -- cgit v1.2.3