C++: Add change note

Also fix discrepancies between `SignedOverflowCheck.ql` and its change
note.
This commit is contained in:
Jonas Jensen
2019-11-13 14:43:30 +01:00
parent 2d72a9cdec
commit 4ddac749af
2 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/**
* @name Undefined result of signed test for overflow
* @name Signed overflow check
* @description Testing for overflow by adding a value to a variable
* to see if it "wraps around" works only for
* unsigned integer values.
@@ -7,7 +7,7 @@
* @problem.severity warning
* @precision high
* @id cpp/signed-overflow-check
* @tags reliability
* @tags correctness
* security
*/