diff options
author | Gael Guennebaud <g.gael@free.fr> | 2009-08-15 10:20:01 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2009-08-15 10:20:01 +0200 |
commit | 109a4f650bb69f1565f9562b384d711e36c56b26 (patch) | |
tree | be03a3edd807deb6359f863be6f29b2af6c07fa9 /test | |
parent | d2becb9612c1cd2c8c45e1177b04d5543be8fb9d (diff) |
fix a couple of warnings
Diffstat (limited to 'test')
-rw-r--r-- | test/product_trsm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/product_trsm.cpp b/test/product_trsm.cpp index 4f0fd15be..9f372df91 100644 --- a/test/product_trsm.cpp +++ b/test/product_trsm.cpp @@ -25,9 +25,9 @@ #include "main.h" #define VERIFY_TRSM(TRI,XB) { \ - XB.setRandom(); ref = XB; \ - TRI.template solveInPlace(XB); \ - VERIFY_IS_APPROX(TRI.toDense() * XB, ref); \ + (XB).setRandom(); ref = (XB); \ + (TRI).solveInPlace(XB); \ + VERIFY_IS_APPROX((TRI).toDense() * (XB), ref); \ } template<typename Scalar> void trsm(int size,int cols) |