File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,8 @@ class LaneBasedExecutionQueue : public BuildExecutionQueue {
166
166
167
167
virtual void addJob (QueueJob job) override {
168
168
if (cancelled) {
169
- // FIXME: We should eventually raise an error here as new work should not be enqueued after cancellation
169
+ // FIXME: We should eventually raise an error here as new work should not
170
+ // be enqueued after cancellation.
170
171
return ;
171
172
}
172
173
@@ -185,7 +186,8 @@ class LaneBasedExecutionQueue : public BuildExecutionQueue {
185
186
readyJobsCondition.notify_all ();
186
187
187
188
sendSignalToProcesses (SIGINT);
188
- killAfterTimeoutThread = llvm::make_unique<std::thread>(&LaneBasedExecutionQueue::killAfterTimeout, this );
189
+ killAfterTimeoutThread = llvm::make_unique<std::thread>(
190
+ &LaneBasedExecutionQueue::killAfterTimeout, this );
189
191
}
190
192
191
193
virtual bool
You can’t perform that action at this time.
0 commit comments