-
Notifications
You must be signed in to change notification settings - Fork 34.6k
Closed as not planned
Labels
*caused-by-extensionIssue identified to be caused by an extensionIssue identified to be caused by an extension
Description
Does this issue occur when all extensions are disabled?: Yes/No
- VS Code Version: 1.96.2
- OS Version: Win & Linux
Steps to Reproduce:
- In a C++ file with an unnamed namespace (
namespace foo { int bar() { return 42; } }
), put the cursor onbar
and note that it says... / (anonymous namespace)
in the breadcrumbs at the top.
In C++, while some people say "anonymous namespace", it's not a thing in the standard. (The only "anonymous" thing I see is union
s.) The correct wording is "unnamed namespace" ([namespace.unnamed] in the standard).
While this is pretty pedantic, there's enough confusing wording in C++, it's best to be consistent.
Metadata
Metadata
Assignees
Labels
*caused-by-extensionIssue identified to be caused by an extensionIssue identified to be caused by an extension