Skip to content

Commit

Permalink
Remove pointless static.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Jul 26, 2024
1 parent 8bb1ed8 commit f01e4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/data_generator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ std::vector<size_t> unravel(size_t flat_index, const Dims& dims) {
}

template <class Dims>
static size_t flat_size(const Dims& dims) {
size_t flat_size(const Dims& dims) {
size_t n = 1;
for (auto d: dims) {
n *= d;
Expand Down

0 comments on commit f01e4b7

Please sign in to comment.