Internals: clangtidy cleanups. No functional change intended (#7343)

This commit is contained in:
Wilson Snyder
2026-03-27 23:14:18 -04:00
committed by GitHub
parent 82c817d425
commit 31757df229
139 changed files with 1089 additions and 1238 deletions
+2 -1
View File
@@ -213,7 +213,8 @@ std::pair<int, bool> V3OptionParser::parse(int idx, int argc, char* argv[]) {
if (!actp->isValueNeeded()) {
actp->exec(optp, nullptr);
return {1, !actp->isNotForRerun()};
} else if (idx + 1 < argc) {
}
if (idx + 1 < argc) {
actp->exec(optp, argv[idx + 1]);
return {2, !actp->isNotForRerun()};
}