Use standard include syntax in Tensor module (<> for include-path and "" for relative path)

This commit is contained in:
Christoph Hertzberg
2015-08-18 14:34:00 +02:00
parent 8097d8d028
commit 0721690dbb
2 changed files with 50 additions and 51 deletions

View File

@@ -183,7 +183,7 @@ template<typename FirstType, typename... OtherTypes> size_t array_prod(const Ind
result *= sizes[i];
}
return result;
};
}
template<typename FirstType, typename... OtherTypes> struct array_size<IndexList<FirstType, OtherTypes...> > {
static const size_t value = std::tuple_size<std::tuple<FirstType, OtherTypes...> >::value;