diff options
Diffstat (limited to 'editor')
-rw-r--r-- | editor/app.cpp | 1 | ||||
-rw-r--r-- | editor/camera.cpp | 2 | ||||
-rw-r--r-- | editor/draw.cpp | 1 | ||||
-rw-r--r-- | editor/imgui-editors.cpp | 1 | ||||
-rw-r--r-- | editor/imgui.cpp | 1 | ||||
-rw-r--r-- | editor/scenery-editor.cpp | 2 | ||||
-rw-r--r-- | editor/tests/path-test.cpp | 1 | ||||
-rw-r--r-- | editor/tests/walk-test.cpp | 1 | ||||
-rw-r--r-- | editor/vobj-editor.cpp | 3 |
9 files changed, 2 insertions, 11 deletions
diff --git a/editor/app.cpp b/editor/app.cpp index b5d6b7a1..44afd635 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -1,7 +1,6 @@ #include "app.hpp" #include "compat/assert.hpp" #include "compat/sysexits.hpp" -#include "compat/borrowed-ptr.inl" #include "editor.hpp" #include "src/anim-atlas.hpp" #include "src/critter.hpp" diff --git a/editor/camera.cpp b/editor/camera.cpp index 5fe28bc7..89147946 100644 --- a/editor/camera.cpp +++ b/editor/camera.cpp @@ -10,7 +10,7 @@ #include "src/camera-offset.hpp" #include "src/timer.hpp" #include "compat/enum-bitset.hpp" -#include "compat/borrowed-ptr.inl" +#include "compat/borrowed-ptr.hpp" #include <bit> #include <Magnum/Math/Functions.h> diff --git a/editor/draw.cpp b/editor/draw.cpp index d781c5a9..f5a906d2 100644 --- a/editor/draw.cpp +++ b/editor/draw.cpp @@ -1,5 +1,4 @@ #include "app.hpp" -#include "compat/borrowed-ptr.inl" #include "src/tile-constants.hpp" #include "floormat/main.hpp" #include "floormat/draw-bounds.hpp" diff --git a/editor/imgui-editors.cpp b/editor/imgui-editors.cpp index a36e7c00..4e331bcf 100644 --- a/editor/imgui-editors.cpp +++ b/editor/imgui-editors.cpp @@ -2,7 +2,6 @@ #include "src/tile-constants.hpp" #include "compat/array-size.hpp" #include "compat/format.hpp" -#include "compat/borrowed-ptr.inl" #include "imgui-raii.hpp" #include "ground-editor.hpp" #include "wall-editor.hpp" diff --git a/editor/imgui.cpp b/editor/imgui.cpp index 5e5acf90..2923c3ea 100644 --- a/editor/imgui.cpp +++ b/editor/imgui.cpp @@ -1,7 +1,6 @@ #include "app.hpp" #include "src/tile-constants.hpp" #include "compat/format.hpp" -#include "compat/borrowed-ptr.inl" #include "editor.hpp" #include "ground-editor.hpp" #include "wall-editor.hpp" diff --git a/editor/scenery-editor.cpp b/editor/scenery-editor.cpp index 0ba04028..778a0275 100644 --- a/editor/scenery-editor.cpp +++ b/editor/scenery-editor.cpp @@ -8,8 +8,6 @@ #include "src/scenery.hpp" #include "compat/borrowed-ptr.inl" -#include <Magnum/Math/Range.h> - namespace floormat { using rotation_t = std::underlying_type_t<enum rotation>; diff --git a/editor/tests/path-test.cpp b/editor/tests/path-test.cpp index 4b82af68..4a0f42df 100644 --- a/editor/tests/path-test.cpp +++ b/editor/tests/path-test.cpp @@ -2,7 +2,6 @@ #include "../app.hpp" #include "compat/array-size.hpp" #include "compat/vector-wrapper.hpp" -#include "compat/borrowed-ptr.inl" #include "floormat/main.hpp" #include "src/search-astar.hpp" #include "src/search-result.hpp" diff --git a/editor/tests/walk-test.cpp b/editor/tests/walk-test.cpp index f04fc869..997546cd 100644 --- a/editor/tests/walk-test.cpp +++ b/editor/tests/walk-test.cpp @@ -7,7 +7,6 @@ #include "floormat/main.hpp" #include "../imgui-raii.hpp" #include "src/search-astar.hpp" -#include "compat/borrowed-ptr.inl" #include <mg/Functions.h> namespace floormat::tests { diff --git a/editor/vobj-editor.cpp b/editor/vobj-editor.cpp index d4497fda..cab9c0e1 100644 --- a/editor/vobj-editor.cpp +++ b/editor/vobj-editor.cpp @@ -5,8 +5,7 @@ #include "loader/loader.hpp" #include "loader/vobj-cell.hpp" #include "app.hpp" -#include <array> -#include <utility> +#include "compat/borrowed-ptr.inl" #include <Corrade/Containers/StringView.h> namespace floormat { |