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
If we have ifdef before variable declarations like this, the option QualifierAlignment doesn't format correctly:
structA {};
intmain() {
#if true
#endif
A const as[10]; // Need to be `const A as[10]` instead
#if true
#endiffor (A const a : as) {} // Need to be `const A a` instead
}