From b08d5b2d2c73c095706cd2442878b960ef46df1f Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Tue, 1 Dec 2009 13:16:51 +0100 Subject: Even more NestByValue cleanup... --- blas/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'blas/common.h') diff --git a/blas/common.h b/blas/common.h index 4be530da2..e7bfda570 100644 --- a/blas/common.h +++ b/blas/common.h @@ -79,14 +79,14 @@ template Block >, Dynamic, Dynamic> matrix(T* data, int rows, int cols, int stride) { - return Map >(data, stride, cols).nestByValue().block(0,0,rows,cols); + return Map >(data, stride, cols).block(0,0,rows,cols); } template Block >, Dynamic, 1> vector(T* data, int size, int incr) { - return Map >(data, size, incr).nestByValue().col(0); + return Map >(data, size, incr).col(0); } template -- cgit v1.2.3