Fix T47100: OpenCL compilation warnings due to missing space in the argument list

This commit is contained in:
Sergey Sharybin 2016-01-03 23:10:57 +05:00
parent d57847ca5b
commit da49ee30b0
Notes: blender-bot 2023-02-14 08:19:33 +01:00
Referenced by issue #47100, Open Cl Kernel Warnings
1 changed files with 2 additions and 2 deletions

View File

@ -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();