Skip to content

Commit

Permalink
fix windows range build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
upsj committed May 23, 2021
1 parent 69f5a8d commit f84bf33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ginkgo/core/base/range.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ class range {
const -> decltype(std::declval<accessor>()(
std::forward<DimensionTypes>(dimensions)...))
{
static_assert(sizeof...(dimensions) <= dimensionality,
static_assert(sizeof...(DimensionTypes) <= dimensionality,
"Too many dimensions in range call");
return accessor_(std::forward<DimensionTypes>(dimensions)...);
}
Expand Down

0 comments on commit f84bf33

Please sign in to comment.