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...); }