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_tile.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/c_fl_tile.cpp') diff --git a/src/c_fl_tile.cpp b/src/c_fl_tile.cpp index 2708d55..81f820a 100644 --- a/src/c_fl_tile.cpp +++ b/src/c_fl_tile.cpp @@ -50,29 +50,29 @@ TILE new_fl_tile(int x, int y, int w, int h, char* label) { } void free_fl_tile(TILE t) { - delete reinterpret_cast(t); + delete static_cast(t); } void fl_tile_position(TILE t, int ox, int oy, int nx, int ny) { - reinterpret_cast(t)->position(ox,oy,nx,ny); + static_cast(t)->position(ox,oy,nx,ny); } void fl_tile_resize(TILE t, int x, int y, int w, int h) { - reinterpret_cast(t)->resize(x, y, w, h); + static_cast(t)->resize(x, y, w, h); } void fl_tile_draw(TILE n) { - reinterpret_cast(n)->Fl_Tile::draw(); + static_cast(n)->Fl_Tile::draw(); } int fl_tile_handle(TILE n, int e) { - return reinterpret_cast(n)->Fl_Tile::handle(e); + return static_cast(n)->Fl_Tile::handle(e); } -- cgit