fix a couple of warnings

This commit is contained in:
Gael Guennebaud
2009-08-15 10:20:01 +02:00
parent d2becb9612
commit 109a4f650b
4 changed files with 13 additions and 13 deletions

View File

@@ -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)