Skip to content

Commit

Permalink
Merge pull request #1244 from mrapp-ke/merge-bugfix
Browse files Browse the repository at this point in the history
Merge bugfix into feature branch
  • Loading branch information
boomer-merge-bot[bot] authored Jan 17, 2025
2 parents 8b8eed5 + 8e84f76 commit c2c9bd6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ namespace util {
* @param numElements The number of elements in the view
* @param value The value to be set
*/
template<typename Iterator, typename T>
static inline void setViewToValue(Iterator iterator, uint32 numElements, T value) {
template<typename Iterator, typename Value>
static inline void setViewToValue(Iterator iterator, uint32 numElements, Value value) {
std::fill(iterator, iterator + numElements, value);
}

Expand Down

0 comments on commit c2c9bd6

Please sign in to comment.