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
@clysto I pushed a fix for this specific case, but stuff like
constexprint a = 5;
std::vector<uint64_t> test(a << 22);
Is still broken because a full/generic fix is going to be tough. Not only does it involve the classic turbofish problem (which is sometimes totally unsolvable), but it also involves function-definition-vs-function-call which for Textmate, is always very hard, and sometimes unsolvable.
Checklist
"C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
It looks like:
It looks like
meta.parameter.cpp
is leaking out of the linestd::vector<uint64_t> test(1 << 22);
Originally from @clysto in microsoft/vscode#207184
The text was updated successfully, but these errors were encountered: