llvm/llvm-project
View on GitHubReadability check for position of constant operand in binary operators
Open
#31,860 opened on Apr 3, 2017
bugzillacheck-requestclang-tidygood first issue
Description
| Bugzilla Link | 32513 |
| Version | unspecified |
| OS | All |
Extended Description
Will be good idea to have readability check for position of constant operand in binary operators.
For example:
if (nullptr == Pointer)
should be fixed as
if (Pointer == nullptr)
or
if (0 < Value)
to
if (Value > 0)