Pattern: Unnecessary underscore
Issue: -
Avoid using multiple underscores when a single underscore will do.
Example of incorrect code:
void function(int __) { }
Example of correct code:
void function(int _) { }
Pattern: Unnecessary underscore
Issue: -
Avoid using multiple underscores when a single underscore will do.
Example of incorrect code:
void function(int __) { }
Example of correct code:
void function(int _) { }