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
_indentIfdef doesn't check if the preprocessor is at the start of the line or in a comment, so even a line with a comment containing #if will mess up the indentation:
input:
/* #if *//* #if *//* #if *//* #if *//* #if */
output:
/* #if *//* #if *//* #if *//* #if *//* #if */
The text was updated successfully, but these errors were encountered:
_indentIfdef
doesn't check if the preprocessor is at the start of the line or in a comment, so even a line with a comment containing#if
will mess up the indentation:input:
output:
The text was updated successfully, but these errors were encountered: