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_xbm_image.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/c_fl_xbm_image.cpp') diff --git a/src/c_fl_xbm_image.cpp b/src/c_fl_xbm_image.cpp index 7bb6ccf..2ecd890 100644 --- a/src/c_fl_xbm_image.cpp +++ b/src/c_fl_xbm_image.cpp @@ -10,12 +10,13 @@ -XBM_IMAGE new_fl_xbm_image(const char * f) { +XBMIMAGE new_fl_xbm_image(const char * f) { Fl_XBM_Image *b = new Fl_XBM_Image(f); return b; } -void free_fl_xbm_image(XBM_IMAGE b) { - delete reinterpret_cast(b); +void free_fl_xbm_image(XBMIMAGE b) { + delete static_cast(b); } + -- cgit