vscode-cpptools
vscode-cpptools copied to clipboard
Official repository for the Microsoft C/C++ extension for VS Code.
Qualifiers like &, && on member functions are not shown in outline view, but const qualifier is shown though. Both members are shown as same `foo()` in outline view: ```...
Type: Feature Request I recently typed code similar to this: ```c switch (rule) { case EXPRESSION: /* ... */ [[falthrough]]; default: } /* ... */ ``` Where's the error? It's...
### Environment - C/C++ Extension Version: 1.29.2 ### Bug Summary and Steps to Reproduce The following will crash the language server. ```c++ #include template using tup = std::tuple; auto crashed(){...
Type: Bug create a c/c++ project in vs code open c_cpp_properties.json in your configuration add "uncludePath":["${workspaceFolder}/**"] ( according to docs, this will recursively include all child directories ) create a...
### Environment - OS and Version: Windows 11 - VS Code Version: 1.106.3(user setup) - C/C++ Extension Version: 1.29.2 - If using SSH remote, specify OS of remote machine: Ubuntu...
### Environment - Windows 11, version 22H2 _(i've not been able to update in years for some reason 😞)_ - Extension versions 1.28.3 _(working version)_ **and** 1.29.2 _(broken version)_ ###...
### Environment - OS and Version: Ubuntu 20.04 - VS Code Version: 1.74.2 - C/C++ Extension Version: 1.13.8 - If using SSH remote, specify OS of remote machine: n/a ###...
Type: Feature Request The HTML tags in hover tooltips failed to display as formatted text due to a lack of parsing-HTML-tags feature. For more details, please refer to discussion #8860
It currently shows a bunch of invalid completions. ``` namespace fooN {} namespace fooNA = fooN; using namespace f; // should show fooN and fooNA ```