[gardening] Use !empty() over size() > 0

This commit is contained in:
Sho Ikeda
2018-03-08 09:21:09 +09:00
parent f8a9e56957
commit cea6c03eb2
35 changed files with 58 additions and 65 deletions

View File

@@ -2855,7 +2855,7 @@ public:
// Add the argument labels.
auto ArgLabels = AFD->getFullName().getArgumentNames();
if (ArgLabels.size() > 0) {
if (!ArgLabels.empty()) {
if (!HaveLParen)
Builder.addLeftParen();
else