mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-20 14:59:27 +00:00
chore: bump clang-tidy to 13 (#3997)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
@@ -7,7 +7,7 @@ if("${PYTHON_MODULE_EXTENSION}" MATCHES "pypy" OR "${Python_INTERPRETER_ID}" STR
|
||||
return()
|
||||
endif()
|
||||
|
||||
find_package(Catch 2.13.5)
|
||||
find_package(Catch 2.13.9)
|
||||
|
||||
if(CATCH_FOUND)
|
||||
message(STATUS "Building interpreter tests using Catch v${CATCH_VERSION}")
|
||||
|
||||
@@ -342,9 +342,8 @@ TEST_SUBMODULE(virtual_functions, m) {
|
||||
const AdderBase &adder,
|
||||
const AdderBase::DataVisitor &visitor) {
|
||||
adder(first, second, [&](const AdderBase::Data &first_plus_second) {
|
||||
adder(first_plus_second,
|
||||
third,
|
||||
visitor); // NOLINT(readability-suspicious-call-argument)
|
||||
// NOLINTNEXTLINE(readability-suspicious-call-argument)
|
||||
adder(first_plus_second, third, visitor);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user