Cleanup: unused variable warnings

This commit is contained in:
2020-05-25 21:03:45 +10:00
parent 3c40d2485f
commit dc3f404a70

View File

@@ -76,6 +76,9 @@ struct TaskNode {
task_data(task_data),
free_func(free_func)
{
#ifndef WITH_TBB
UNUSED_VARS(task_graph);
#endif
}
TaskNode(const TaskNode &other) = delete;
@@ -123,6 +126,8 @@ void BLI_task_graph_work_and_wait(TaskGraph *task_graph)
{
#ifdef WITH_TBB
task_graph->tbb_graph.wait_for_all();
#else
UNUSED_VARS(task_graph);
#endif
}