Skip to content

Commit d6b071d

Browse files
don't use braces for single-line if-blocks
1 parent 97a4cba commit d6b071d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Driver/Driver.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2945,9 +2945,8 @@ Job *Driver::buildJobsForAction(Compilation &C, const JobAction *JA,
29452945
chooseObjectiveCHeaderOutputPath(C, OutputMap, workingDirectory,
29462946
Output.get());
29472947

2948-
if (C.getArgs().hasArg(options::OPT_emit_symbol_graph)) {
2948+
if (C.getArgs().hasArg(options::OPT_emit_symbol_graph))
29492949
chooseSymbolGraphOutputPath(C, OutputMap, workingDirectory, Output.get());
2950-
}
29512950

29522951
// 4. Construct a Job which produces the right CommandOutput.
29532952
std::unique_ptr<Job> ownedJob = TC.constructJob(*JA, C, std::move(InputJobs),

0 commit comments

Comments
 (0)