diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-18 11:34:03 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-18 12:29:24 +0100 |
commit | 7e79dbfedfc019b269139b5308e4811938b75278 (patch) | |
tree | ac441403afa8da5b6586d963e79f636f7bcef2bf /src/world.hpp | |
parent | ec4f8323fe075e8b8d716128996658a2a1a300d7 (diff) |
compat: remove integer-types header
Other headers incldue <cstddef> and <cstdint> anyway.
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.hpp b/src/world.hpp index 248f9dc4..69710bb6 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -1,8 +1,9 @@ #pragma once #include "compat/int-hash.hpp" -#include "compat/integer-types.hpp" +#include "compat/defs.hpp" #include "chunk.hpp" #include "global-coords.hpp" +#include <cstddef> #include <unordered_map> #include <memory> |