From d1d7a1ade9da009f11b8ff47222c6498fdd93aa2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 23 Jun 2013 19:11:32 +0200 Subject: Workaround a bunch of stupid warnings in unit tests --- test/triangular.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/triangular.cpp') diff --git a/test/triangular.cpp b/test/triangular.cpp index a2a7a1475..78b2c31f7 100644 --- a/test/triangular.cpp +++ b/test/triangular.cpp @@ -211,8 +211,8 @@ void test_triangular() int maxsize = (std::min)(EIGEN_TEST_MAX_SIZE,20); for(int i = 0; i < g_repeat ; i++) { - int r = internal::random(2,maxsize); EIGEN_UNUSED_VARIABLE(r); - int c = internal::random(2,maxsize); EIGEN_UNUSED_VARIABLE(c); + int r = internal::random(2,maxsize); r=r; // shuts down ICC's remark #593: variable "s" was set but never used + int c = internal::random(2,maxsize); c=c; CALL_SUBTEST_1( triangular_square(Matrix()) ); CALL_SUBTEST_2( triangular_square(Matrix()) ); -- cgit v1.2.3