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
intmain(void) {
chara=42;
intb, c, *p1, *p2;
// The color of the first closing parenthesis in the following 2 lines// differs from the color of their matching opening parenthesis (wrong).p1= (int*)(&a);
p2= (int*)&a;
// The color of the first closing parenthesis in the following 2 lines// matches the color of their matching opening parenthesis (correct).b= (int)(a);
c= (int)a;
return0;
}
The text was updated successfully, but these errors were encountered:
@oncipriani Can you provide a screenshot? Can you check if the issue still repros with our C/C++ extension disabled? I am not reproing the issue for some reason.
Environment
Bug Summary and Steps to Reproduce
Bug Summary:
The closing parenthesis for a type cast to any pointer type gets the wrong color.
Steps to reproduce:
Expected behavior:
The color of a closing parenthesis should be the same as the color of its matching opening parenthesis.
Configuration and Logs
Other Extensions
No response
Additional context
Sample C source:
The text was updated successfully, but these errors were encountered: