Fixed a compilation issue for GCC/MSVC

This commit is contained in:
Cedric Nugteren 2017-03-19 17:37:52 +01:00
parent c27d2f0c1e
commit 0610447a7a

View file

@ -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>