File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -290,17 +290,17 @@ public final class ManifestLoader: ManifestLoaderProtocol {
290
290
// We might have some non-fatal output (warnings/notes) from the compiler even when
291
291
// we were able to parse the manifest successfully.
292
292
if let compilerOutput = result. compilerOutput {
293
- // FIXME: Isn't the judgement too naive?
293
+ // FIXME: Isn't the strategy too naive?
294
294
var outputSeverity : Basics . Diagnostic . Severity = . warning
295
- #if os(Windows)
296
- // Filter out link.exe note when creating manifest executable.
295
+ #if os(Windows)
296
+ // Filter out `LINK` note for creating manifest executable.
297
297
if let compiledManifestName = result. compiledManifestFile? . basenameWithoutExt,
298
298
!compilerOutput. contains ( where: \. isNewline) {
299
299
if compilerOutput. contains ( " \( compiledManifestName) .lib " ) && compilerOutput. contains ( " \( compiledManifestName) .exp " ) {
300
300
outputSeverity = . debug
301
301
}
302
302
}
303
- #endif
303
+ #endif
304
304
if !compilerOutput. isEmpty {
305
305
let metadata = result. diagnosticFile. map { diagnosticFile -> ObservabilityMetadata in
306
306
var metadata = ObservabilityMetadata ( )
You can’t perform that action at this time.
0 commit comments