vscode-cpptools icon indicating copy to clipboard operation
vscode-cpptools copied to clipboard

Qualifiers on member functions are not shown in outline view

Open lijh8 opened this issue 6 days ago • 0 comments

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:

struct T
{
    void foo() & {}
    void foo() && {}
};

ms-vscode.cpptools 1.29.3

lijh8 avatar Dec 10 '25 10:12 lijh8