Skip to content

Commit 70170b0

Browse files
committed
Silence clang-tidy issue
1 parent f530adb commit 70170b0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_numpy_vectorize.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ TEST_SUBMODULE(numpy_vectorize, m) {
7979
explicit VectorizeTestClass(int v) : value{v} {};
8080
float method(int x, float y) const { return y + (float) (x + value); }
8181
// Exercises vectorize(Return (Class::*)(Args...) noexcept)
82+
// NOLINTNEXTLINE(readability-make-member-function-const)
8283
float method_noexcept(int x, float y) noexcept { return y + (float) (x + value); }
8384
// Exercises vectorize(Return (Class::*)(Args...) const noexcept)
8485
float method_const_noexcept(int x, float y) const noexcept {

0 commit comments

Comments
 (0)