From 8abbb8d36d31f04393ddec2311bed33446c7ef06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Korthaus?= Date: Tue, 28 Jul 2015 17:33:18 +0200 Subject: [PATCH] Fix --enable=all parameter to cppcheck The --enable parameter to cppcheck is called -enable here. --- 02-Use_the_Tools_Available.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index 0bec44c..137f5cf 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -123,7 +123,7 @@ The best bet is the static analyzer that you can run as part of your automated b Coverity has a free (for open source) static analysis toolkit that can work on every commit in integration with [Travis CI](http://travis-ci.org) and [AppVeyor](http://www.appveyor.com/). ### Cppcheck -Cppcheck is free and open source. It strives for 0 false positives and does a good job at it. Therefore all warnings should be enabled: `-enable=all` +Cppcheck is free and open source. It strives for 0 false positives and does a good job at it. Therefore all warnings should be enabled: `--enable=all` ### Clang's Static Analyzer