summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-29 03:45:13 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-29 03:45:13 +0200
commit1709a4f2037f45b199da319cc7cc4ea2c3f177bd (patch)
treecc1ba361e5e0a4803c4c21e90e3f8b431bad74e5 /src
parent1995c5981e044c5c537b48c53073409137c42ec6 (diff)
update pch
Diffstat (limited to 'src')
-rw-r--r--src/loader.hpp5
-rw-r--r--src/precomp.hpp24
2 files changed, 17 insertions, 12 deletions
diff --git a/src/loader.hpp b/src/loader.hpp
index a521cf2d..9dae4b11 100644
--- a/src/loader.hpp
+++ b/src/loader.hpp
@@ -1,12 +1,9 @@
#pragma once
+#include <memory>
#include <Corrade/Containers/StringView.h>
#include <Magnum/Trade/ImageData.h>
-#include <string>
-#include <optional>
-#include <memory>
-
#define IMAGE_PATH "share/floormat/images/"
namespace floormat {
diff --git a/src/precomp.hpp b/src/precomp.hpp
index de7a10e6..624692b1 100644
--- a/src/precomp.hpp
+++ b/src/precomp.hpp
@@ -3,27 +3,35 @@
#include "compat/integer-types.hpp"
#include "compat/defs.hpp"
#include "compat/assert.hpp"
+#include "compat/alloca.hpp"
+#include <bit>
#include <cstddef>
#include <cstdint>
+#include <cstdio>
#include <cmath>
-#include <cstdlib>
+
#include <concepts>
-#include <type_traits>
#include <limits>
+#include <memory>
+#include <type_traits>
+
+#include <algorithm>
+#include <utility>
+#include <filesystem>
#include <tuple>
#include <array>
#include <optional>
#include <vector>
-#include <memory>
-#include <utility>
-#include <algorithm>
-#include <filesystem>
+#include <unordered_map>
+#include <string> // TODO
#include <Corrade/Containers/Array.h>
-#include <Corrade/Containers/ArrayViewStl.h>
-#include <Corrade/Containers/StringStlView.h>
+#include <Corrade/Containers/ArrayViewStl.h> // TODO maybe remove stl
+#include <Corrade/Containers/StringStlView.h> // TODO remove stl
+#include <Corrade/Containers/String.h>
+#include <Corrade/Containers/Pointer.h>
#include <Corrade/Utility/DebugStl.h>
#include <Magnum/Magnum.h>