Created
November 29, 2017 10:41
-
-
Save clemensg/6a7d4fa119f59729bc3a3814a26ca10d to your computer and use it in GitHub Desktop.
Bug 34649 - clang-format messes up comment indentations - Problem 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main(void) | |
{ | |
if (1) | |
{ | |
/* Comment */ | |
#ifdef FOO | |
printf("bar"); | |
#endif | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This problem no longer occurs with clang-format 9.0.0
👍