Closed jgcodes2020 closed 4 months ago
Checklist
"C_Cpp.enhancedColorization": "Disabled"
#include <iostream> template <bool T> constexpr bool var_template = T; template <bool T> struct obj_template { static constexpr bool value = T; }; int main() { std::cout << var_template<true> << obj_template<true>::value; }
with the One Monokai theme
The <and > tokens next to var_template in var_template<true> should get the punctuation.section.angle-brackets.begin.template.call.cpp and punctuation.section.angle-brackets.end.template.call.cpp scopes respectively.
<
>
var_template
var_template<true>
punctuation.section.angle-brackets.begin.template.call.cpp
punctuation.section.angle-brackets.end.template.call.cpp
They don't.
fixed, not sure when it was fixed though
Checklist
"C_Cpp.enhancedColorization": "Disabled"
The code with a problem is:
It looks like:
with the One Monokai theme
It should look like:
The
<
and>
tokens next tovar_template
invar_template<true>
should get thepunctuation.section.angle-brackets.begin.template.call.cpp
andpunctuation.section.angle-brackets.end.template.call.cpp
scopes respectively.They don't.