Skip to content

Commit 09abbfe

Browse files
hughbematthewcarroll
authored andcommitted
Fix lib/Basic Windows/Cygwin build
(cherry picked from commit ff17c26) #6812
1 parent c1be989 commit 09abbfe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/Basic/Default/TaskQueue.inc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ unsigned TaskQueue::getNumberOfParallelTasks() const {
6868
}
6969

7070
void TaskQueue::addTask(const char *ExecPath, ArrayRef<const char *> Args,
71-
ArrayRef<const char *> Env, void *Context) {
72-
std::unique_ptr<Task> T(new Task(ExecPath, Args, Env, Context));
71+
ArrayRef<const char *> Env, void *Context,
72+
bool SeparateErrors) {
73+
std::unique_ptr<Task> T(new Task(ExecPath, Args, Env, Context, SeparateErrors));
7374
QueuedTasks.push(std::move(T));
7475
}
7576

0 commit comments

Comments
 (0)