From: Alexander Alekhin Date: Thu, 21 Nov 2013 08:35:37 +0000 (+0400) Subject: ocl: fix cl_platform.h:95: #elif _WIN32 -> #elif defined(_WIN32) X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1314^2~758^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbc91c5ee93198c3cbc3174a4ddc75960bcd2b2f;p=platform%2Fupstream%2Fopencv.git ocl: fix cl_platform.h:95: #elif _WIN32 -> #elif defined(_WIN32) --- diff --git a/3rdparty/include/opencl/1.2/CL/cl_platform.h b/3rdparty/include/opencl/1.2/CL/cl_platform.h index cf2b721..46b3d9d 100644 --- a/3rdparty/include/opencl/1.2/CL/cl_platform.h +++ b/3rdparty/include/opencl/1.2/CL/cl_platform.h @@ -92,7 +92,7 @@ extern "C" { #define CL_EXT_SUFFIX__VERSION_1_1_DEPRECATED __attribute__((deprecated)) #define CL_EXT_PREFIX__VERSION_1_1_DEPRECATED #endif - #elif _WIN32 + #elif defined(_WIN32) #ifdef CL_USE_DEPRECATED_OPENCL_1_0_APIS #define CL_EXT_SUFFIX__VERSION_1_0_DEPRECATED #define CL_EXT_PREFIX__VERSION_1_0_DEPRECATED