pull/782/head
Matthijs Douze 2019-04-08 20:26:42 -07:00
commit f443db75f3
1 changed files with 1 additions and 1 deletions

View File

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