Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-01-03 21:10:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-03 21:13:49 +0300
commitda49ee30b00575ce34e2e63219f08abc11ed75f8 (patch)
treed9af44d5b75eb467ffe328e92a5ca61ae7a010aa /intern/cycles/device/device_opencl.cpp
parentd57847ca5b90573842911082005f36cec55a9ab6 (diff)
Fix T47100: OpenCL compilation warnings due to missing space in the argument list
Diffstat (limited to 'intern/cycles/device/device_opencl.cpp')
-rw-r--r--intern/cycles/device/device_opencl.cpp4
1 files changed, 2 insertions, 2 deletions
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();