Skip to content

Commit f3cf34d

Browse files
authored
Revert the compiler version check for the span default trait (#209)
* Revert the compiler version check for the span default trait
1 parent 08cc012 commit f3cf34d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ dep.append(
2121
// Enable SubprocessFoundation by default
2222
var defaultTraits: Set<String> = ["SubprocessFoundation"]
2323

24-
#if compiler(>=6.3) || (compiler(>=6.2) && (os(Linux) || os(Windows) || os(FreeBSD)))
25-
// Enable SubprocessSpan when Span is available
24+
#if compiler(>=6.2)
25+
// Enable SubprocessSpan when Span is available.
2626
defaultTraits.insert("SubprocessSpan")
2727
#endif
2828

0 commit comments

Comments
 (0)