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
Here are 2 example lines:
int a = *(c + b + 3) + *(d + e + 3); float b = (*(c + b + 3) + *(d + e + 3)) / 2.0;
style50 insists on a space between * and (d in the second one, which would be poor style.
Might be confused by the parentheses? @crossroads1112
The text was updated successfully, but these errors were encountered:
I can experiment, but if astyle doesn't have some flag to fix it, the only thing to do would be to file a bug there.
astyle
Sorry, something went wrong.
This is also relevant for sizeof *buf kind of statements:
sizeof *buf
although I'd add parens just in case.
No branches or pull requests
Here are 2 example lines:
style50 insists on a space between * and (d in the second one, which would be poor style.
Might be confused by the parentheses? @crossroads1112
The text was updated successfully, but these errors were encountered: