Commit d635aa9c authored by Steffen Schmitz's avatar Steffen Schmitz Committed by Lucas Hosseini

fix: gpu compilation with cuda 10.1 (#771)

The GPU compilation fails with g++ 8.3.1 and cuda 10.1
With this proposed fix the compilation works locally

Contributes to #751
parent 5555ae7f
......@@ -359,7 +359,7 @@ bool canUseIndexType() {
template <typename IndexType, typename T, typename... U>
bool canUseIndexType(const T& arg, const U&... args) {
return arg.canUseIndexType<IndexType>() &&
return arg.template canUseIndexType<IndexType>() &&
canUseIndexType(args...);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment