Skip to content

Commit ec04625

Browse files
committed
Change ExternalTargetModuleDetails.init to be public
libSwiftDriver clients need to be able to instantiate these objects.
1 parent 7d74b7c commit ec04625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftDriver/ExplicitModuleBuilds/ExplicitDependencyBuildPlanner.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public typealias ExternalTargetModulePathMap = [ModuleDependencyId: AbsolutePath
2020
/// Details about an external target, including the path to its .swiftmodule file
2121
/// and whether it is a framework.
2222
public struct ExternalTargetModuleDetails {
23-
@_spi(Testing) public init(path: AbsolutePath, isFramework: Bool) {
23+
public init(path: AbsolutePath, isFramework: Bool) {
2424
self.path = path
2525
self.isFramework = isFramework
2626
}

0 commit comments

Comments
 (0)