Open chausner opened 1 year ago
Checklist
"C_Cpp.enhancedColorization": "Disabled"
#include <functional> void test(std::function<int (int parameter)> f1) { std::function<int (int parameter)> f2; }
Theme: Light+.
parameter in line 3 should look like in line 4.
parameter
Interesting, that syntax is new to me, but it looks like its been there since C++ 11.
Note for future me: seems to be an edgecase limited to function<> and not a general templating capability.
function<>
Checklist
"C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
It looks like:
Theme: Light+.
It should look like:
parameter
in line 3 should look like in line 4.