summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-03-20 19:53:55 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-03-20 19:53:55 +0100
commita98c00a2671b8981579f3a73dca8fb3365a95e53 (patch)
tree739a8bd5cb698ac9a657081bb7b09e8b2e15f1d3 /test
parenta21d903796b8f72f4ec807a4f2608ace7ab4263e (diff)
Fixed a GCC/MSVC compilation issue
Diffstat (limited to 'test')
-rw-r--r--test/correctness/testblas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/testblas.cpp b/test/correctness/testblas.cpp
index 4a620686..c8c59fcf 100644
--- a/test/correctness/testblas.cpp
+++ b/test/correctness/testblas.cpp
@@ -21,7 +21,7 @@
namespace clblast {
// =================================================================================================
-template <typename T, typename U> const auto TestBlas<T,U>::kSeed = 42; // fixed seed for reproducibility
+template <typename T, typename U> const int TestBlas<T,U>::kSeed = 42; // fixed seed for reproducibility
// Test settings for the regular test. Append to these lists in case more tests are required.
template <typename T, typename U> const std::vector<size_t> TestBlas<T,U>::kVectorDims = { 7, 93, 4096 };