We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d880e2e commit 537e063Copy full SHA for 537e063
Sources/SwiftDriver/IncrementalCompilation/FirstWaveComputer.swift
@@ -192,8 +192,10 @@ extension IncrementalCompilationState.FirstWaveComputer {
192
return skippedInputs
193
}
194
195
- private func sortByCommandLineOrder(_ inputs: Set<TypedVirtualPath>) -> [TypedVirtualPath] {
196
- inputFiles.filter (inputs.contains)
+ private func sortByCommandLineOrder(
+ _ inputs: Set<TypedVirtualPath>
197
+ ) -> LazyFilterSequence<[TypedVirtualPath]> {
198
+ inputFiles.lazy.filter(inputs.contains)
199
200
201
/// Encapsulates information about an input the driver has determined has
0 commit comments