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 dc7fa81 commit 8a3d972Copy full SHA for 8a3d972
Sources/SwiftDriver/Incremental Compilation/BuildRecord.swift
@@ -83,7 +83,8 @@ public extension BuildRecord {
83
else { throw SimpleErrors.couldNotDecodeBuildRecord }
84
var argsHash: String? = defaultArgsHash
85
var swiftVersion: String?
86
- var buildTime: Date?
+ // Legacy driver does not disable incremental if no buildTime field.
87
+ var buildTime: Date = .distantPast
88
var inputInfos: [VirtualPath: InputInfo]?
89
for (key, value) in sections {
90
guard let k = key.string else { throw SimpleErrors.sectionNameNotString }
0 commit comments