From 24c048d2100dd66e78b3bee9022e7f9ba472917a Mon Sep 17 00:00:00 2001 From: jiri Date: Tue, 15 Aug 2006 20:29:55 +0000 Subject: [PATCH] *** empty log message *** --- nonclass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonclass.h b/nonclass.h index 52b8a4a..e216609 100644 --- a/nonclass.h +++ b/nonclass.h @@ -14,7 +14,7 @@ const NRSMat twoside_transform(const NRSMat &S, const NRMat &C, bool tr if(transp) { NRMat tmp = C * S; - NRMat result(C.rows(),C.nrows()); + NRMat result(C.nrows(),C.nrows()); result.gemm((T)0,tmp,'n',C,'t',(T)1); return NRSMat(result); }