summaryrefslogtreecommitdiffhomepage
path: root/entity
diff options
context:
space:
mode:
Diffstat (limited to 'entity')
-rw-r--r--entity/entity.hpp2
-rw-r--r--entity/types.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/entity/entity.hpp b/entity/entity.hpp
index 1dedebf0..4eca858e 100644
--- a/entity/entity.hpp
+++ b/entity/entity.hpp
@@ -1,8 +1,8 @@
#pragma once
#include "name-of.hpp"
-#include "compat/integer-types.hpp"
#include "accessor.hpp"
#include "util.hpp"
+#include <cstddef>
#include <concepts>
#include <compare>
#include <type_traits>
diff --git a/entity/types.hpp b/entity/types.hpp
index 88391725..055f6de0 100644
--- a/entity/types.hpp
+++ b/entity/types.hpp
@@ -9,7 +9,7 @@ using StringView = BasicStringView<const char>;
namespace floormat::entities {
-enum class erased_field_type : std::uint32_t {
+enum class erased_field_type : unsigned {
none,
string,
u8, u16, u32, u64, s8, s16, s32, s64,