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_adjuster.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/c_fl_adjuster.cpp') diff --git a/src/c_fl_adjuster.cpp b/src/c_fl_adjuster.cpp index 1b9db8e..4cd2b70 100644 --- a/src/c_fl_adjuster.cpp +++ b/src/c_fl_adjuster.cpp @@ -60,33 +60,33 @@ ADJUSTER new_fl_adjuster(int x, int y, int w, int h, char* label) { } void free_fl_adjuster(ADJUSTER a) { - delete reinterpret_cast(a); + delete static_cast(a); } int fl_adjuster_is_soft(ADJUSTER a) { - return reinterpret_cast(a)->soft(); + return static_cast(a)->soft(); } void fl_adjuster_set_soft(ADJUSTER a, int t) { - reinterpret_cast(a)->soft(t); + static_cast(a)->soft(t); } void fl_adjuster_value_damage(ADJUSTER a) { - (reinterpret_cast(a)->*(&Friend_Adjuster::value_damage))(); + (static_cast(a)->*(&Friend_Adjuster::value_damage))(); } void fl_adjuster_draw(ADJUSTER a) { - reinterpret_cast(a)->Fl_Adjuster::draw(); + static_cast(a)->Fl_Adjuster::draw(); } int fl_adjuster_handle(ADJUSTER a, int e) { - return reinterpret_cast(a)->Fl_Adjuster::handle(e); + return static_cast(a)->Fl_Adjuster::handle(e); } -- cgit