aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/blasutil.cpp
diff options
context:
space:
mode:
authorGravatar David Tellenbach <david.tellenbach@me.com>2020-08-14 18:15:18 +0200
committerGravatar David Tellenbach <david.tellenbach@me.com>2020-08-14 18:15:18 +0200
commitd2bb6cf39650240be530a7ffd71f56fae13ca222 (patch)
treee3d6e2c624ff1212a517e227c6b2786e38ab2b4c /test/blasutil.cpp
parentc6820a6316c86fb7f67fd344832f8e31cac62dc1 (diff)
Fix compilation error in blasutil test
Diffstat (limited to 'test/blasutil.cpp')
-rw-r--r--test/blasutil.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/blasutil.cpp b/test/blasutil.cpp
index 255d2a6ca..9caacfbab 100644
--- a/test/blasutil.cpp
+++ b/test/blasutil.cpp
@@ -189,6 +189,7 @@ EIGEN_DECLARE_TEST(blasutil)
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 @@ EIGEN_DECLARE_TEST(blasutil)
#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
+}