diff --git a/tests/tt_metal/tt_metal/stl/test_strong_type_handle.cpp b/tests/tt_metal/tt_metal/stl/test_strong_type_handle.cpp index ce63137331d..1fd3f532469 100644 --- a/tests/tt_metal/tt_metal/stl/test_strong_type_handle.cpp +++ b/tests/tt_metal/tt_metal/stl/test_strong_type_handle.cpp @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: © 2024 Tenstorrent Inc. +// +// SPDX-License-Identifier: Apache-2.0 + #include #include @@ -56,6 +60,7 @@ TEST(StrongTypeHandleTest, MoveOnlyType) { MoveOnlyHandle to = std::move(from); + // NOLINTNEXTLINE(bugprone-use-after-move) EXPECT_THAT(*from, IsNull()); EXPECT_EQ(**to, 42); }