From dbf6f4db24aee7315b2782a87e127367887e2036 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 16 Jan 2025 14:21:05 +1300 Subject: Changed reinterpret_cast to static_cast where applicable --- src/c_fl_xpm_image.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/c_fl_xpm_image.h') diff --git a/src/c_fl_xpm_image.h b/src/c_fl_xpm_image.h index d1ac6eb..a925c33 100644 --- a/src/c_fl_xpm_image.h +++ b/src/c_fl_xpm_image.h @@ -8,16 +8,13 @@ #define FL_XPM_IMAGE_GUARD +typedef void* XPMIMAGE; -typedef void* XPM_IMAGE; - - - - -extern "C" XPM_IMAGE new_fl_xpm_image(const char * f); -extern "C" void free_fl_xpm_image(XPM_IMAGE j); +extern "C" XPMIMAGE new_fl_xpm_image(const char * f); +extern "C" void free_fl_xpm_image(XPMIMAGE j); #endif + -- cgit