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_jpeg_image.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/c_fl_jpeg_image.cpp') diff --git a/src/c_fl_jpeg_image.cpp b/src/c_fl_jpeg_image.cpp index 6523e39..63cbe8d 100644 --- a/src/c_fl_jpeg_image.cpp +++ b/src/c_fl_jpeg_image.cpp @@ -10,17 +10,17 @@ -JPEG_IMAGE new_fl_jpeg_image(const char * f) { +JPEGIMAGE new_fl_jpeg_image(const char * f) { Fl_JPEG_Image *j = new Fl_JPEG_Image(f); return j; } -JPEG_IMAGE new_fl_jpeg_image2(const char *n, void *data) { - Fl_JPEG_Image *j = new Fl_JPEG_Image(n, reinterpret_cast(data)); +JPEGIMAGE new_fl_jpeg_image2(const char *n, void *data) { + Fl_JPEG_Image *j = new Fl_JPEG_Image(n, static_cast(data)); return j; } -void free_fl_jpeg_image(JPEG_IMAGE j) { - delete reinterpret_cast(j); +void free_fl_jpeg_image(JPEGIMAGE j) { + delete static_cast(j); } -- cgit