From da49ee30b00575ce34e2e63219f08abc11ed75f8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 3 Jan 2016 23:10:57 +0500 Subject: Fix T47100: OpenCL compilation warnings due to missing space in the argument list --- intern/cycles/device/device_opencl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/cycles') diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp index a1743f53831..c49583b07f3 100644 --- a/intern/cycles/device/device_opencl.cpp +++ b/intern/cycles/device/device_opencl.cpp @@ -2287,9 +2287,9 @@ public: string clbin; string clsrc, *debug_src = NULL; - string build_options = "-D__SPLIT_KERNEL__"; + string build_options = "-D__SPLIT_KERNEL__ "; #ifdef __WORK_STEALING__ - build_options += " -D__WORK_STEALING__"; + build_options += "-D__WORK_STEALING__ "; #endif build_options += requested_features.get_build_options(); -- cgit v1.2.3