summaryrefslogtreecommitdiff
path: root/test/performance
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-03-19 17:37:52 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-03-19 17:37:52 +0100
commit0610447a7ad0554ddb5646ff9bca975d7f37a511 (patch)
treef711fb65db228f4f18d005ee39993d16dc15ddea /test/performance
parentc27d2f0c1ea69820f39d440f307c7bc3f97472c4 (diff)
Fixed a compilation issue for GCC/MSVC
Diffstat (limited to 'test/performance')
-rw-r--r--test/performance/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/performance/client.cpp b/test/performance/client.cpp
index e86145f8..aa864c8f 100644
--- a/test/performance/client.cpp
+++ b/test/performance/client.cpp
@@ -24,7 +24,7 @@
namespace clblast {
// =================================================================================================
-template <typename T, typename U> const auto Client<T,U>::kSeed = 42; // fixed seed for reproducibility
+template <typename T, typename U> const int Client<T,U>::kSeed = 42; // fixed seed for reproducibility
// Constructor
template <typename T, typename U>