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
Consider following code snippet:
void test(int i, int *j) { bool b = *j < *j && *j > *j; bool c = i < i && i > i; i < i && i > i; }
clang-format will give:
clang-format
void test(int i, int *j) { bool b = *j<*j && * j> * j; bool c = i < i && i > i; i<i && i> i; }
The text was updated successfully, but these errors were encountered:
[clang-format] Fix a bug in annotating '&&' enclosed in '<' and '>'
86b8369
Fixes llvm#65877.
&&
*
&
[clang-format] Fix a bug in annotating && followed by * or &
70aafbc
[clang-format] Fix a bug in annotating && followed by * or & (#…
0b2c88e
…65933) Fixes #65877.
[clang-format] Fix a bug in annotating && followed by * or & (l…
65414fa
…lvm#65933) Fixes llvm#65877.
722bb1f
owenca
Successfully merging a pull request may close this issue.
Consider following code snippet:
clang-format
will give:The text was updated successfully, but these errors were encountered: