Skip to content

Commit

Permalink
fix gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
sthalik committed Jan 16, 2024
1 parent 371f3ba commit e171d80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions editor/editor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ class editor final

app* _app;

safe_ptr<ground_editor> _floor{};
safe_ptr<wall_editor> _wall{};
safe_ptr<scenery_editor> _scenery{};
safe_ptr<vobj_editor> _vobj{};
safe_ptr<ground_editor> _floor;
safe_ptr<wall_editor> _wall;
safe_ptr<scenery_editor> _scenery;
safe_ptr<vobj_editor> _vobj;

struct drag_pos final {
global_coords coord, draw_coord;
Expand Down

0 comments on commit e171d80

Please sign in to comment.