diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-09 16:45:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-09 22:32:47 +0200 |
commit | ba124320327beea8a4068ffa93a9050fa3dd5c38 (patch) | |
tree | 7b1c6b2698889ee37df360b0ef7b02623b403447 /vcl/skia/osx | |
parent | ba4e3aa94eb7425729a3ec1647a4c7cbe6b64cf8 (diff) |
loplugin:casttovoid
Change-Id: Ifa6c18651b2e3faa4500f19217bf11dba10f02fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157709
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/skia/osx')
-rw-r--r-- | vcl/skia/osx/gdiimpl.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/skia/osx/gdiimpl.cxx b/vcl/skia/osx/gdiimpl.cxx index e64f84b111bc..752208c0bc41 100644 --- a/vcl/skia/osx/gdiimpl.cxx +++ b/vcl/skia/osx/gdiimpl.cxx @@ -37,9 +37,8 @@ using namespace SkiaHelper; -static void releaseInstalledPixels(void* pAddr, void* pContext) +static void releaseInstalledPixels(void* pAddr, void*) { - (void)pContext; if (pAddr) delete[] static_cast<sal_uInt8*>(pAddr); } |