Oliver Stöneberg
Oliver Stöneberg
Having `\0` in the character sign field makes no sense at all. We are provide a fixed platform and then we are basing that value on the compiler - that...
Closing as though the idea to pinpoint the exact location where something is actually modifying is enticing the usage of `const_cast` should be avoided in general. So actually getting rid...
You can suppress the warnings about system headers with `--suppress=missingIncludeSystem`. I also think we should split the `--enable=` option `missingInclude` into a local and system version (I though I had...
See also #4337 and https://trac.cppcheck.net/ticket/11252.
This also fixes https://trac.cppcheck.net/ticket/11283 which was essentially broken in non-Windows binaries since ages.
`missingInclude` and `missingIncludeSystem` findings do not affect the exitcode. `--check-library` and `unmacthedSuppression` for some reason do affect it although they are also `information` messages, so I think that is a...
On a side note: The last remaining use of `reportInfo()` is for `ConfigurationNotChecked`. IMO we should fail on every finding when `--error-exitcode` is specified otherwise the option is kind of...
> > The last remaining use of reportInfo() is for ConfigurationNotChecked. > > I have the feeling we added reportInfo() so those messages can be displayed differently in the GUI....
> I think for some users it will be more visible that some local headers must be included that is good! > > Some users will start including every header,...
Using the static lists instead of building them on-demand in `TokenList` should speed up the tests - especially the scanf/printf ones in `TestIO`. before: ``` Benchmark 1: bin/testrunner TestIO Time...