Skip to content

Commit 9962b82

Browse files
author
David Ungar
authored
Merge pull request #457 from davidungar/fix-broken-main
Fix the breaks
2 parents a72b703 + 53db068 commit 9962b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SwiftDriver/IncrementalCompilation/ModuleDependencyGraph.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ extension ModuleDependencyGraph {
920920
func matches(_ other: ModuleDependencyGraph) -> Bool {
921921
guard nodeFinder.matches(other.nodeFinder),
922922
tracedNodes.matches(other.tracedNodes),
923-
sourceSwiftDepsMap.matches(other.sourceSwiftDepsMap),
923+
inputDependencySourceMap.matches(other.inputDependencySourceMap),
924924
externalDependencies.matches(other.externalDependencies)
925925
else {
926926
return false
@@ -935,7 +935,7 @@ extension Set where Element == ModuleDependencyGraph.Node {
935935
}
936936
}
937937

938-
extension BidirectionalMap where T1 == TypedVirtualPath, T2 == ModuleDependencyGraph.SwiftDeps {
938+
extension BidirectionalMap where T1 == TypedVirtualPath, T2 == ModuleDependencyGraph.DependencySource {
939939
fileprivate func matches(_ other: Self) -> Bool {
940940
self == other
941941
}

0 commit comments

Comments
 (0)