From 84c68dcb3fbd172626e2f58a2b2d8f9390520b48 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 13 Apr 2016 08:58:52 +0200 Subject: Cycles: Minor cleanup, whitespace around keyword and preprocessor indent --- intern/cycles/test/util_task_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern/cycles/test') diff --git a/intern/cycles/test/util_task_test.cpp b/intern/cycles/test/util_task_test.cpp index e2860d8f8db..2268206b214 100644 --- a/intern/cycles/test/util_task_test.cpp +++ b/intern/cycles/test/util_task_test.cpp @@ -30,7 +30,7 @@ void task_run() { TEST(util_task, basic) { TaskScheduler::init(0); TaskPool pool; - for (int i = 0; i < 100; ++i) { + for(int i = 0; i < 100; ++i) { pool.push(function_bind(task_run)); } TaskPool::Summary summary; @@ -40,10 +40,10 @@ TEST(util_task, basic) { } TEST(util_task, multiple_times) { - for (int N = 0; N < 1000; ++N) { + for(int N = 0; N < 1000; ++N) { TaskScheduler::init(0); TaskPool pool; - for (int i = 0; i < 100; ++i) { + for(int i = 0; i < 100; ++i) { pool.push(function_bind(task_run)); } TaskPool::Summary summary; -- cgit v1.2.3