mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
12f0981a82
detect bugs that your compiler do not see. Checks for: memory leaks, mismatching allocation-deallocation, buffer overrun, and many more. Cppcheck is versatile. You can check non-standard code that includes various compiler extensions, inline assembly code, etc. The goal is no false positives. WWW: http://sourceforge.net/projects/cppcheck Approved by: tabthorpe
11 lines
412 B
Plaintext
11 lines
412 B
Plaintext
Cppcheck is a tool for static C/C++ code analysis, and it tries to
|
|
detect bugs that your compiler do not see. Checks for: memory leaks,
|
|
mismatching allocation-deallocation, buffer overrun, and many more.
|
|
|
|
Cppcheck is versatile. You can check non-standard code that includes
|
|
various compiler extensions, inline assembly code, etc.
|
|
|
|
The goal is no false positives.
|
|
|
|
WWW: http://sourceforge.net/projects/cppcheck
|