Reputation: 11
The VSCode C++ extension often produces several 'problems' through its intellisense engine when viewing a file. However, these are not often useful because the intellisense compiler is not the same compiler used in a C++ project (gcc, clang, etc)
Is there a way to optionally filter intellisense errors from the problems pane in VSCode?
Upvotes: 1
Views: 1156
Reputation: 34148
Try the extension's errorSquiggles
setting:
"C_Cpp.errorSquiggles": "Disabled"
Controls whether suspected compile errors detected by the IntelliSense engine will be reported back to the editor. Warnings about #includes that could not be located will always be reported to the editor. This setting is ignored by the Tag Parser engine.
Upvotes: 1