Suppress 5.8 & 8.6 (#975)

As of cppcheck 2.9, these checks produce too many false positives
They do not account for class scope.
E.g. class1::method1==class2::method1
This commit is contained in:
tx_haggis 2023-05-03 19:14:57 -05:00 committed by GitHub
parent bcdd308035
commit f71b7e50e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -29,4 +29,9 @@ misra-c2012-19.2
misra-c2012-20.1
misra-c2012-20.5
misra-c2012-20.10
misra-c2012-21.12
misra-c2012-21.12
# As of cppcheck 2.9, these checks produce too many false positives
# They do not account for class scope.
# E.g. class1::method1==class2::method1
misra-c2012-5.8
misra-c2012-8.6