Oliver Stöneberg

Results 331 issues of 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:...

clang-tidy

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: ![image](https://user-images.githubusercontent.com/242857/234585874-117450ed-462e-46ce-ba8c-909d48b04833.png) After: ![image](https://user-images.githubusercontent.com/242857/234587288-4bdd5c53-c7af-4234-87ba-2ec36c229527.png)

We should provide a quick fix action which adds an inline suppression to the code.

enhancement
help wanted