microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"<unnamed>" is incorrectly offered as a completion

sean-mcmanus opened this issue · comments

It should not be. The completed result of <unnamed> is invalid C++.

namespace foo {
namespace
{
    int i;
}
/// result is <unnamed>

};

image