We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef2a13 commit 7ba596fCopy full SHA for 7ba596f
com.googlecode.cppcheclipse.core/src/com/googlecode/cppcheclipse/core/command/CppcheckCommand.java
@@ -39,8 +39,9 @@ public class CppcheckCommand extends AbstractCppcheckCommand {
39
private final static String ERROR_FORMAT = "{file}" + DELIMITER + "{line}"
40
+ DELIMITER + "{severity}" + DELIMITER + "{id}" + DELIMITER
41
+ "{message}";
42
+ private final static String SAFETY_OFF = "--premium=safety-off";
43
private final static String[] DEFAULT_ARGUMENTS = { "--template="
- + ERROR_FORMAT };
44
+ + ERROR_FORMAT, SAFETY_OFF };
45
46
/**
47
* pattern recognizes "2/2 files checked 100% done"
0 commit comments