diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-16 04:51:24 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-16 04:51:24 +0100 |
commit | e171d805393b6b802004d69ee95204e1f37e6a95 (patch) | |
tree | fd2d096ff221177222a74b45214bfc7894ab4887 /editor | |
parent | 371f3ba371355ef204bf26bfe8aac962cebc1e4c (diff) |
fix gcc build
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/editor.hpp b/editor/editor.hpp index 22cd48da..598d93de 100644 --- a/editor/editor.hpp +++ b/editor/editor.hpp @@ -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; |