You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This problem exists even with the setting "C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
auto f = []<typename t>
requires std::is_same_v<t, int>
{};
auto g = []<classt>
requires std::is_same_v<t, int>
{};
auto h = []<int t>
requires true
{};
The text was updated successfully, but these errors were encountered:
EienMiku
changed the title
Missing highlight of template params in lambda expressions with an explicit template parameter list
Missing highlight of template params and requires in lambda expressions with an explicit template parameter list
Nov 21, 2024
Checklist
"C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
👆Lambda expressions with an explicit template parameter list (always generic) (since C++20)
It looks like:
The theme is Default Dark Modern.
It should look like:
The text was updated successfully, but these errors were encountered: