From fc9856a25efefa1c5e3eaa5d941d4c174329db1d Mon Sep 17 00:00:00 2001 From: chck Date: Sat, 22 Jun 2019 02:43:53 +0900 Subject: [PATCH] Fix gpu compilation with cuda 10.1 related to #751 (#865) --- gpu/utils/Tensor.cuh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/utils/Tensor.cuh b/gpu/utils/Tensor.cuh index fcff26952b..1ed387e0ba 100644 --- a/gpu/utils/Tensor.cuh +++ b/gpu/utils/Tensor.cuh @@ -358,7 +358,7 @@ bool canUseIndexType() { template bool canUseIndexType(const T& arg, const U&... args) { - return arg.template canUseIndexType() && + return arg.template canUseIndexType() && canUseIndexType(args...); }