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_radio_round_button.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/c_fl_radio_round_button.cpp') diff --git a/src/c_fl_radio_round_button.cpp b/src/c_fl_radio_round_button.cpp index 5ddaa1f..b09e1f3 100644 --- a/src/c_fl_radio_round_button.cpp +++ b/src/c_fl_radio_round_button.cpp @@ -50,7 +50,7 @@ RADIOROUNDBUTTON new_fl_radio_round_button(int x, int y, int w, int h, char* lab } void free_fl_radio_round_button(RADIOROUNDBUTTON b) { - delete reinterpret_cast(b); + delete static_cast(b); } @@ -58,11 +58,11 @@ void free_fl_radio_round_button(RADIOROUNDBUTTON b) { void fl_radio_round_button_draw(RADIOROUNDBUTTON b) { - reinterpret_cast(b)->Fl_Radio_Round_Button::draw(); + static_cast(b)->Fl_Radio_Round_Button::draw(); } int fl_radio_round_button_handle(RADIOROUNDBUTTON b, int e) { - return reinterpret_cast(b)->Fl_Radio_Round_Button::handle(e); + return static_cast(b)->Fl_Radio_Round_Button::handle(e); } -- cgit