diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:05:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:09:23 +0100 |
commit | d0c9cb0c253ea9cff472a811dafb80043d7889a8 (patch) | |
tree | d929461e59727b4ebcd5197256d6bad2612b3c8d /opencl/source/openclwrapper.cxx | |
parent | 3a32d02b618f0b7e41758ec7832bff0051d98c72 (diff) |
Clean up C-style casts from pointers to void
Change-Id: I7e6315bf2a2e3d6e089ef8f5eacc69d2b413374a
Diffstat (limited to 'opencl/source/openclwrapper.cxx')
-rw-r--r-- | opencl/source/openclwrapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opencl/source/openclwrapper.cxx b/opencl/source/openclwrapper.cxx index 5f0b9916f471..ad3ead800afa 100644 --- a/opencl/source/openclwrapper.cxx +++ b/opencl/source/openclwrapper.cxx @@ -830,7 +830,7 @@ bool switchOpenCLDevice(const OUString* pDevice, bool bAutoSelect, bool bForceEv // initialisation below.) Because otherwise the code crashes in // initOpenCLRunEnv(). Confused? You should be. - gpuEnv.mpArryDevsID = (cl_device_id*) malloc( sizeof(cl_device_id) ); + gpuEnv.mpArryDevsID = static_cast<cl_device_id*>(malloc( sizeof(cl_device_id) )); gpuEnv.mpArryDevsID[0] = pDeviceId; return !initOpenCLRunEnv(0); |