From b5a3ce8cce584925925418219813301824e99141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 12 Jan 2013 11:16:57 +0100 Subject: [PATCH] Manual: Added chapter about --inconclusive --- man/manual.docbook | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/man/manual.docbook b/man/manual.docbook index 6ab6401f4..27436143b 100644 --- a/man/manual.docbook +++ b/man/manual.docbook @@ -229,6 +229,20 @@ Checking path/file2.cpp... cppcheck --enable=all path + +
+ Inconclusive checks + + By default Cppcheck only writes error messages if it is certain. + With --inconclusive error + messages will also be written when the analysis is inconclusive. + + cppcheck --inconclusive path + + This can of course cause false warnings, it might be reported + that there are bugs even though there are not. Only use this command + if false warnings are acceptable. +