aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparse_solver.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-02-19 23:31:08 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-02-19 23:31:08 +0100
commitece6b440f969c129afbc5e5aaa966ce1df6f78e2 (patch)
treefff2c7a255d9caa081c476fb69369e331332cd8b /test/sparse_solver.h
parent1b7e12847d099ab6715c3ee99f068c9fd19858fc (diff)
Fix a C++11 compilation issue in unit test
Diffstat (limited to 'test/sparse_solver.h')
-rw-r--r--test/sparse_solver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sparse_solver.h b/test/sparse_solver.h
index 892a9777f..f0a4691e3 100644
--- a/test/sparse_solver.h
+++ b/test/sparse_solver.h
@@ -145,7 +145,7 @@ void check_sparse_solving_real_cases(Solver& solver, const typename Solver::Matr
res_error = (b - A * x).norm()/b.norm();
}
if (res_error > test_precision<Scalar>() ){
- std::cerr << "Test " << g_test_stack.back() << " failed in "EI_PP_MAKE_STRING(__FILE__)
+ std::cerr << "Test " << g_test_stack.back() << " failed in " EI_PP_MAKE_STRING(__FILE__)
<< " (" << EI_PP_MAKE_STRING(__LINE__) << ")" << std::endl << std::endl;
abort();
}