C++: Update annotation in test file

This commit is contained in:
Jonas Jensen
2019-11-13 16:58:25 +01:00
parent 4ddac749af
commit 81d06e2ce6

View File

@@ -2,5 +2,5 @@
int not_in_range_nostrict(int *ptr, int *ptr_end, unsigned int a) {
return ptr + a < ptr_end || // GOOD (for the purpose of this test)
ptr + a < ptr; // GOOD (due to compiler options) [FALSE POSITIVE]
ptr + a < ptr; // GOOD (due to compiler options)
}