Günter Wirth

Results 117 comments of Günter Wirth

Hi, like to have same feature. #72 seems to be a solution. PR failed only because of lint issue. @marvinpinto maybe you can have a look to it? Regards,

Hi @falconhunter80, I'm also not familiar how they are doing it, but it is for sure not only the tag. Looking to https://docs.sonarqube.org/latest/extend/adding-coding-rules/ type must be **Vulnerability** or **Hotspot** and...

Hello @gerboengels, > unmatchedSuppression, unknownMacro, internalAstError, syntaxError and cppcheckError These "errors" sound more like internal CppCheck errors/warnings/hints than static code analysis issues? I'm not sure if they should be visible...

Hi @gerboengels, In principle, it would be no problem to add the "internal messages" back into the list. The question is how to get a complete list of the internal...

Hi @thinksabin, I can't open your PNG file. What exactly is your problem? Did you read this? * https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Scan-Source-Code * https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Scan-Report-Files * most likely the problem is this: https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Manage-Quality-Profiles Regards,

Hi @williehao, > Can I use 8.8 version or need to downgrade 7.*? You can use 8.8, best is to use the latest snapshot: https://github.com/SonarOpenCommunity/sonar-cxx/releases/tag/latest-snapshot > scanner version is okay...

Hi @williehao, in case of no issues you must most likely enable the rules in your profile: * https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Scan-Report-Files * **https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Manage-Quality-Profiles** Regards,

rise a question on **SonarSource Commuity** [12275](https://community.sonarsource.com/t/issue-context-addlocation-addflow-whats-the-difference/12275)

**Report:** ``` 1 warning generated. /tmp/static-analyzer.cpp:11:18: warning: Dereference of null pointer (loaded from variable 'x') [clang-analyzer-core.NullDereference] printf("%d", *x); ^ /tmp/static-analyzer.cpp:7:5: note: 'x' initialized to a null pointer value int* x...

Idea: ```C++ "aaa" MACRO "bbb" ``` is after preprocessing ```C++ "aaa" 0 "bbb" ``` Add a special case for string concatenation?