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
The ampersand in &x should be orange, the same color as the one in int& a, because it is the address of operator, but instead it is categorized as the bitwise and operator, and therefore it is colored light yellow, which is the color I use for bitwise operators.
The text was updated successfully, but these errors were encountered:
Checklist
"C_Cpp.enhancedColorization": "Disabled"
If Disabling that^ makes the problem go away, then follow this to make an issue on the C++ extension:
https://github.com/microsoft/vscode-cpptools/issues/new/choose
The code with a problem is:
It looks like:
It should look like:
The ampersand in
&x
should be orange, the same color as the one inint& a
, because it is the address of operator, but instead it is categorized as the bitwise and operator, and therefore it is colored light yellow, which is the color I use for bitwise operators.The text was updated successfully, but these errors were encountered: