diff options
Diffstat (limited to 'src/precomp.hpp')
-rw-r--r-- | src/precomp.hpp | 24 |
1 files changed, 16 insertions, 8 deletions
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> |