Skip to content

Commit 8e8a7e8

Browse files
committed
Fix build warning about unnecessary 'await'.
rdar://148558223
1 parent e945eb6 commit 8e8a7e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SWBCore/SpecImplementations/Tools/CCompiler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ public class ClangCompilerSpec : CompilerSpec, SpecIdentifierType, GCCCompatible
10651065

10661066
// Start with the executable.
10671067
let compilerExecPath = resolveExecutablePath(cbc, forLanguageOfFileType: resolvedInputFileType)
1068-
let launcher = await resolveCompilerLauncher(cbc, compilerPath: compilerExecPath, delegate: delegate)
1068+
let launcher = resolveCompilerLauncher(cbc, compilerPath: compilerExecPath, delegate: delegate)
10691069
if let launcher {
10701070
commandLine += [launcher.str]
10711071
}

0 commit comments

Comments
 (0)