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
... and they probably should be, right?
Example 1
if(true)n++; // Before if (true) n++; // After if(true)++n; // Before if (true)++n; // After ^ missing space
Example 2
if(true) // Before n++; if (true) // After n++; if(true) // Before ++n; if (true) // After ++n; ^ missing indentation
The text was updated successfully, but these errors were encountered:
Merge pull request #503 from ashamza/fix#495
05fa0f3
Fix pre-increment and pre-decrement formatting issues (#495)
Fixed by #503
Sorry, something went wrong.
No branches or pull requests
... and they probably should be, right?
Example 1
Example 2
The text was updated successfully, but these errors were encountered: