Skip to content

Commit

Permalink
Suppress clang-tidy warning about implicit constructor (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul authored Apr 30, 2024
1 parent 3827331 commit 9bac50e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sleipnir/util/SmallVector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class small_vector
vectorT::insert(vectorT::begin(), first, last);
}

small_vector(std::initializer_list<T> init) : small_vector() {
small_vector(std::initializer_list<T> init) : small_vector() { // NOLINT
vectorT::insert(vectorT::begin(), init);
}

Expand Down

0 comments on commit 9bac50e

Please sign in to comment.