Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: swiftlang/swift-package-manager
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 86313d6b42da427992df35ce32e44f0f21908327
Choose a base ref
..
head repository: swiftlang/swift-package-manager
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 970e775a10a8e52cb9758dad6b84c3b05402841f
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +1 −1 Sources/PackageDescription/PackageDescription.swift
  2. +1 −1 Sources/PackageDescription/Target.swift
  3. +1 −1 Sources/PackageLoading/ContextModel.swift
2 changes: 1 addition & 1 deletion Sources/PackageDescription/PackageDescription.swift
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
internal import ucrt
internal import struct WinSDK.HANDLE
#endif
internal import Foundation
@_implementationOnly import Foundation

/// The configuration of a Swift package.
///
2 changes: 1 addition & 1 deletion Sources/PackageDescription/Target.swift
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
//
//===----------------------------------------------------------------------===//

internal import Foundation
@_implementationOnly import Foundation

/// The basic building block of a Swift package.
///
2 changes: 1 addition & 1 deletion Sources/PackageLoading/ContextModel.swift
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
//===----------------------------------------------------------------------===//

#if USE_IMPL_ONLY_IMPORTS
internal import Foundation
@_implementationOnly import Foundation
#else
import Foundation
#endif