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 703eece commit 25978e1Copy full SHA for 25978e1
include/swift/Driver/Action.h
@@ -146,7 +146,11 @@ class IncrementalJobAction : public JobAction {
146
: status(stat), previousModTime(time) {}
147
148
static InputInfo makeNewlyAdded() {
149
- return InputInfo(Status::NewlyAdded, llvm::sys::TimePoint<>::max());
+ return {Status::NewlyAdded, llvm::sys::TimePoint<>::max()};
150
+ }
151
+
152
+ static InputInfo makeNeedsCascadingRebuild() {
153
+ return {Status::NeedsCascadingBuild, llvm::sys::TimePoint<>::min()};
154
}
155
};
156
0 commit comments