We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, When formatting macros, those who have trailing multiline comments are formatted incorrectly (moved into new line):
#define FOO_1 BAR_1 /* Comment */ #define FOO_2 BAR_2 /* Comment */ #define FOO_3 BAR_3 /* Multiline Comment */ #define FOO_4 BAR_4 /* Comment */
gets formatted to:
#define FOO_1 BAR_1 /* Comment */ #define FOO_2 BAR_2 /* Comment */ #define FOO_3 \ BAR_3 /* Multiline \ * Comment */ #define FOO_4 BAR_4 /* Comment */
Tested with clang-format 13.0.0 and 13.0.1 with custom .clang-format based on LLVM and also LLVM only
Perhaps related to #53180 ?
Greetings
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-clang-format
Sorry, something went wrong.
No branches or pull requests
Hello,
When formatting macros, those who have trailing multiline comments are formatted incorrectly (moved into new line):
gets formatted to:
Tested with clang-format 13.0.0 and 13.0.1 with custom .clang-format based on LLVM and also LLVM only
Perhaps related to #53180 ?
Greetings
The text was updated successfully, but these errors were encountered: