Merge pull request #13604 from jketema/annotation

C++: Fix test annotation for `cpp/invalid-pointer-deref` test
This commit is contained in:
Mathias Vorreiter Pedersen
2023-06-28 17:54:43 +01:00
committed by GitHub

View File

@@ -369,7 +369,7 @@ void test26(unsigned size) {
}
if (p < end) {
int val = *p; // GOOD [FALSE POSITIVE]
int val = *p; // GOOD
}
}