Oliver Stöneberg
Oliver Stöneberg
See https://github.com/actions/runner-images/blob/main/images/win/Windows2019-Readme.md#tools and https://github.com/actions/runner-images/blob/main/images/win/Windows2022-Readme.md#tools.
This is a very old change and after reviewing the code for the loading of non-`cfg` files it turns out that the existing behavior is actually a bug. All the...
This is a "blackbox test" to ensure it works. We also need more unit tests.
The code which checks for unique error messages did not apply the template configuration which lead to suppression of unique messages: ``` (information) Cppcheck cannot find all the include files...
This does not change any types. It just makes implicit conversions explicit. Here's the warnings in question for reference: ``` /mnt/s/GitHub/simplecpp-fw/simplecpp.cpp:401:76: warning: implicit conversion loses integer precision: 'int' to 'const...
```cpp #include class A { public: A() {} virtual ~A() {} virtual void f(const std::string &a, const char b[], const std::size_t c); }; class B : public A { public:...
Starting with 2.13.0 Cppcheck will always generate a `checkersReport` error when `information` i enabled: ```xml ``` As this has no location information it will produce a error notification on each...
This applies the provided information from Cppcheck and improves the highlighting. Example: ```xml ``` Before:  After: 
We should provide a quick fix action which adds an inline suppression to the code.