From 7e79dbfedfc019b269139b5308e4811938b75278 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 18 Nov 2022 11:34:03 +0100 Subject: compat: remove integer-types header Other headers incldue and anyway. --- serialize/binary-serializer.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'serialize') diff --git a/serialize/binary-serializer.hpp b/serialize/binary-serializer.hpp index 66281cc1..3d39880c 100644 --- a/serialize/binary-serializer.hpp +++ b/serialize/binary-serializer.hpp @@ -1,7 +1,7 @@ #pragma once -#include "compat/integer-types.hpp" -#include "compat/defs.hpp" +#include +#include #include #include #include @@ -17,7 +17,7 @@ namespace floormat::Serialize { static_assert(std::endian::native == std::endian::big || std::endian::native == std::endian::little); -enum class value_type : std::uint8_t { +enum class value_type : unsigned char { none, uc, u8, u16, u32, u64, f32, f64, COUNT -- cgit v1.2.3