Fix compilation error in blasutil test
diff --git a/test/blasutil.cpp b/test/blasutil.cpp index 255d2a6..9caacfb 100644 --- a/test/blasutil.cpp +++ b/test/blasutil.cpp
@@ -189,6 +189,7 @@ CALL_SUBTEST_1(run_test<numext::int8_t>()); CALL_SUBTEST_2(run_test<numext::int16_t>()); CALL_SUBTEST_3(run_test<numext::int32_t>()); + // TODO: Replace this by a call to numext::int64_t as soon as we have a way to // detect the typedef for int64_t on all platforms #if EIGEN_HAS_CXX11 @@ -196,7 +197,8 @@ #else CALL_SUBTEST_4(run_test<signed long>()); #endif - CALL_SUBTEST_5(run_test<numext::float_t>()); - CALL_SUBTEST_6(run_test<numext::double_t>()); + + CALL_SUBTEST_5(run_test<float_t>()); + CALL_SUBTEST_6(run_test<double_t>()); } -} \ No newline at end of file +}