Skip to content

Commit caa16ea

Browse files
suppress clang-tidy warning
there is check for null but not visible by clang-tidy (v8). Change-Id: I9cf1403b5c9f8ecbeda0cd7a600f46aa2e41736e Signed-off-by: Artur Harasimiuk <[email protected]>
1 parent bd3acce commit caa16ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/unit_tests/utilities/containers_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ void iDListTestDetachSequence() {
791791

792792
ASSERT_EQ(nodes[4], nodes[0]->next);
793793
ASSERT_NE(nullptr, nodes[4]);
794-
ASSERT_EQ(nodes[0], nodes[4]->prev);
794+
ASSERT_EQ(nodes[0], nodes[4]->prev); // NOLINT(clang-analyzer-core.NonNullParamChecker)
795795
ASSERT_EQ(nodes[0], list.peekHead());
796796
ASSERT_EQ(nodes[9], list.peekTail());
797797

0 commit comments

Comments
 (0)