mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[NFC] Pre- increment and decrement where possible
This commit is contained in:
@@ -374,9 +374,9 @@ namespace driver {
|
||||
if (auto *Stats = Comp.getStatsReporter()) {
|
||||
auto &D = Stats->getDriverCounters();
|
||||
if (Skipped)
|
||||
D.NumDriverJobsSkipped++;
|
||||
++D.NumDriverJobsSkipped;
|
||||
else
|
||||
D.NumDriverJobsRun++;
|
||||
++D.NumDriverJobsRun;
|
||||
}
|
||||
auto BlockedIter = BlockingCommands.find(Cmd);
|
||||
if (BlockedIter != BlockingCommands.end()) {
|
||||
|
||||
Reference in New Issue
Block a user