From e41e3151647a203b42cbe0c507506beba8cb697b Mon Sep 17 00:00:00 2001 From: Raphael Grimm Date: Mon, 1 Nov 2021 12:23:49 +0100 Subject: [PATCH] Add NOLINT since clang-tidy requests make_unique, but C++11 jobs don't support it --- tests/src/unit-custom-base-class.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/unit-custom-base-class.cpp b/tests/src/unit-custom-base-class.cpp index ffba14935..8259cacd9 100644 --- a/tests/src/unit-custom-base-class.cpp +++ b/tests/src/unit-custom-base-class.cpp @@ -173,7 +173,7 @@ TEST_CASE("JSON Node Metadata") { using json = json_with_metadata>; json value; - value.metadata().reset(new int(42)); + value.metadata().reset(new int(42)); // NOLINT auto moved = std::move(value); CHECK(moved.metadata() != nullptr);