Skip to content

Commit 6cdb91f

Browse files
committed
[Lint] Fix 80-col violations.
1 parent 8f8cef3 commit 6cdb91f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/BuildSystem/LaneBasedExecutionQueue.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ class LaneBasedExecutionQueue : public BuildExecutionQueue {
166166

167167
virtual void addJob(QueueJob job) override {
168168
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.
170171
return;
171172
}
172173

@@ -185,7 +186,8 @@ class LaneBasedExecutionQueue : public BuildExecutionQueue {
185186
readyJobsCondition.notify_all();
186187

187188
sendSignalToProcesses(SIGINT);
188-
killAfterTimeoutThread = llvm::make_unique<std::thread>(&LaneBasedExecutionQueue::killAfterTimeout, this);
189+
killAfterTimeoutThread = llvm::make_unique<std::thread>(
190+
&LaneBasedExecutionQueue::killAfterTimeout, this);
189191
}
190192

191193
virtual bool

0 commit comments

Comments
 (0)