Skip to content

Commit

Permalink
Fix build breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesmz committed Oct 30, 2023
1 parent 958098b commit 76173f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osp/tasks/execute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ static void pipeline_advance_reqs(Tasks const& tasks, TaskGraph const& graph, Ex
ExecPipeline &rTaskPlExec = rExec.plData[rBlocked.pipeline];
-- rTaskPlExec.tasksQueuedBlocked;
++ rTaskPlExec.tasksQueuedRun;
rExec.tasksQueuedRun.emplace(task);
rExec.tasksQueuedRun.push(task);
rExec.tasksQueuedBlocked.erase(task);
}
}
Expand Down Expand Up @@ -577,7 +577,7 @@ static void pipeline_advance_run(Tasks const& tasks, TaskGraph const& graph, Exe
}
else
{
rExec.tasksQueuedRun.emplace(task);
rExec.tasksQueuedRun.push(task);
++ rExecPl.tasksQueuedRun;
}

Expand Down

0 comments on commit 76173f0

Please sign in to comment.