Skip to content

Commit

Permalink
Merge branch 'main' into update-expired-test-cert
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa authored Dec 17, 2024
2 parents d5d8231 + 4f5bd82 commit fd57b6b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,14 @@ let package = Package(
],
cxxLanguageStandard: .cxx14
)

// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
for target in package.targets {
if target.type != .plugin {
var settings = target.swiftSettings ?? []
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
target.swiftSettings = settings
}
}
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
1 change: 1 addition & 0 deletions Sources/NIOSSL/IdentityVerification.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//
//===----------------------------------------------------------------------===//

import CNIOLinux
import NIOCore

#if canImport(Darwin)
Expand Down

0 comments on commit fd57b6b

Please sign in to comment.