From 8c846cccd6bdfd3e90a695fabbf05f53e5466a57 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 9 Nov 2020 15:46:15 +1100 Subject: Cleanup: clang-format --- source/blender/blenlib/tests/BLI_task_graph_test.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/tests/BLI_task_graph_test.cc') diff --git a/source/blender/blenlib/tests/BLI_task_graph_test.cc b/source/blender/blenlib/tests/BLI_task_graph_test.cc index 3374411b2bd..475e0270da2 100644 --- a/source/blender/blenlib/tests/BLI_task_graph_test.cc +++ b/source/blender/blenlib/tests/BLI_task_graph_test.cc @@ -135,7 +135,8 @@ TEST(task, GraphForest) { TaskNode *tree1_node_a = BLI_task_graph_node_create( graph, TaskData_increase_value, &data1, nullptr); - TaskNode *tree1_node_b = BLI_task_graph_node_create(graph, TaskData_store_value, &data1, nullptr); + TaskNode *tree1_node_b = BLI_task_graph_node_create( + graph, TaskData_store_value, &data1, nullptr); TaskNode *tree1_node_c = BLI_task_graph_node_create( graph, TaskData_increase_value, &data1, nullptr); TaskNode *tree1_node_d = BLI_task_graph_node_create( @@ -149,7 +150,8 @@ TEST(task, GraphForest) { TaskNode *tree2_node_a = BLI_task_graph_node_create( graph, TaskData_increase_value, &data2, nullptr); - TaskNode *tree2_node_b = BLI_task_graph_node_create(graph, TaskData_store_value, &data2, nullptr); + TaskNode *tree2_node_b = BLI_task_graph_node_create( + graph, TaskData_store_value, &data2, nullptr); TaskNode *tree2_node_c = BLI_task_graph_node_create( graph, TaskData_increase_value, &data2, nullptr); TaskNode *tree2_node_d = BLI_task_graph_node_create( -- cgit v1.2.3