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
macros can cause formatting to remove spaces sometimes. for example
for (auto [name, format] : targetMap)
is fine, but with a macro #define var auto, clang formats behaves like this
#define var auto for (var[name, format] : targetMap)
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-clang-format
Author: None (proximities)
Sorry, something went wrong.
No branches or pull requests
macros can cause formatting to remove spaces sometimes. for example
is fine, but with a macro #define var auto, clang formats behaves like this
The text was updated successfully, but these errors were encountered: