From 4716040703be1ee906439385d20475dcddad5ce3 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 25 Oct 2010 10:15:22 -0400 Subject: bug #86 : use internal:: namespace instead of ei_ prefix --- test/miscmatrices.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/miscmatrices.cpp') diff --git a/test/miscmatrices.cpp b/test/miscmatrices.cpp index b14bca61c..327ceaedb 100644 --- a/test/miscmatrices.cpp +++ b/test/miscmatrices.cpp @@ -36,7 +36,7 @@ template void miscMatrices(const MatrixType& m) Index rows = m.rows(); Index cols = m.cols(); - Index r = ei_random(0, rows-1), r2 = ei_random(0, rows-1), c = ei_random(0, cols-1); + Index r = internal::random(0, rows-1), r2 = internal::random(0, rows-1), c = internal::random(0, cols-1); VERIFY_IS_APPROX(MatrixType::Ones(rows,cols)(r,c), static_cast(1)); MatrixType m1 = MatrixType::Ones(rows,cols); VERIFY_IS_APPROX(m1(r,c), static_cast(1)); -- cgit v1.2.3