diff --git a/man/cppcheck.1.xml b/man/cppcheck.1.xml index 5b8b83cd4..724b0da1f 100644 --- a/man/cppcheck.1.xml +++ b/man/cppcheck.1.xml @@ -103,8 +103,10 @@ man(1), man(7), http://www.tldp.org/HOWTO/Man-Page/ &dhpackage; + + @@ -141,48 +143,50 @@ man(1), man(7), http://www.tldp.org/HOWTO/Man-Page/ This allows you to provide information about functions by providing an implementation for these. + + + + By default Cppcheck checks all configurations. Use -D to limit the checking. When -D is used the checking is limited to the given configuration. + + Enable specific checks. The available ids are: - - all - - - Enable all checks. - - - - exceptNew - - - Check exception safety when using new. - - - - exceptRealloc - - - Check exception safety when reallocating. - - - - style - - - Check coding style. - - - - unusedFunctions - - - Check for unused functions. - - - - - Several ids can be given if you separate them with commas, e.g. --enable=style,unusedFunctions. + + + all + + Enable all checks. + + + + exceptNew + + Check exception safety when using new. + + + + exceptRealloc + + Check exception safety when reallocating. + + + + style + + Check coding style. + + + + unusedFunctions + + Check for unused functions. + + + + Several ids can be given if you separate them with commas, e.g. --enable=style,unusedFunctions. + @@ -194,6 +198,18 @@ man(1), man(7), http://www.tldp.org/HOWTO/Man-Page/ 256 can become 0. + + + + Used when certain messages should be displayed but should not cause a non-zero exitcode. + + + + + + Specify the files to check in a text file. One filename per line. + + @@ -216,6 +232,13 @@ default. files, this is not needed. + + + + Enable inline suppressions. Use them by placing comments in the form: // cppcheck-suppress memleak + before the line to suppress. + +