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_box.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/c_fl_box.cpp') diff --git a/src/c_fl_box.cpp b/src/c_fl_box.cpp index 67b4e0b..e9c170d 100644 --- a/src/c_fl_box.cpp +++ b/src/c_fl_box.cpp @@ -55,18 +55,18 @@ BOX new_fl_box2(int k, int x, int y, int w, int h, char * label) { } void free_fl_box(BOX b) { - delete reinterpret_cast(b); + delete static_cast(b); } void fl_box_draw(BOX n) { - reinterpret_cast(n)->Fl_Box::draw(); + static_cast(n)->Fl_Box::draw(); } int fl_box_handle(BOX n, int e) { - return reinterpret_cast(n)->Fl_Box::handle(e); + return static_cast(n)->Fl_Box::handle(e); } -- cgit