We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b205513 commit 23f17a4Copy full SHA for 23f17a4
CondCore/HLTPlugins/plugins/AlCaRecoTriggerBits_PayloadInspector.cc
@@ -347,7 +347,7 @@ namespace {
347
toAppend += not_in_last[iPath] + ";";
348
}
349
// if it's the last and not empty, dump it
350
- if (toAppend.length() > 0 && iPath == not_in_last.size() - 1)
+ if (!toAppend.empty() && iPath == not_in_last.size() - 1)
351
output.push_back(toAppend);
352
353
@@ -372,7 +372,7 @@ namespace {
372
toAppend += not_in_first[jPath] + ";";
373
374
375
- if (toAppend.length() > 0 && jPath == not_in_first.size() - 1)
+ if (!toAppend.empty() && jPath == not_in_first.size() - 1)
376
377
378
0 commit comments