cppcheck
cppcheck copied to clipboard
static analysis of C/C++ code
# Context When using the MISRA addon, a colleague found out the MISRA defects were all categorized as `style` by cppcheck. We use the [cppcheck_codequality](https://pypi.org/project/cppcheck-codequality/) script to convert the cppcheck...
Add Jenkins workflow and optimise testing mechanism
This PR fixes a similar bug than [#11591](https://trac.cppcheck.net/ticket/11591) fixed in PR https://github.com/danmar/cppcheck/pull/6331.
Try to handle loops, it works for https://trac.cppcheck.net/ticket/11786. However, I am uncertain if this change may introduce additional errors or unintended consequences. ``` else if (Token::Match(tok, "for|while|do")) { continue; }...
At work (Areus Gmbh), we use Shared Items Projects in order to deduplicate code. In contrast to conventional project files (`.vcxproj`), the compilation configuration is set by the "includee", which...