Kaydet (Commit) 57c59b24 authored tarafından Michael Stahl's avatar Michael Stahl

warning C4245 signed/unsigned mismatch

Change-Id: Ibff6c806c287a2303cdf3b1942d5d5014a73bd30
üst c980d497
......@@ -702,8 +702,8 @@ void FormulaGroupInterpreter::getOpenCLDeviceInfo(sal_Int32& rDeviceId, sal_Int3
#if HAVE_FEATURE_OPENCL
size_t aDeviceId = -1;
size_t aPlatformId = -1;
size_t aDeviceId = static_cast<size_t>(-1);
size_t aPlatformId = static_cast<size_t>(-1);
#ifndef DISABLE_DYNLOADING
osl::Module* pModule = getOpenCLModule();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment