From e71866b1a29de3b9b6b615af3e9186b425475232 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 19 Jul 2022 20:48:39 -0500 Subject: [PATCH] [ox/model] Remove _t from integer type descriptors --- deps/ox/src/ox/model/types.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deps/ox/src/ox/model/types.hpp b/deps/ox/src/ox/model/types.hpp index 9d5dab9b..246dbc71 100644 --- a/deps/ox/src/ox/model/types.hpp +++ b/deps/ox/src/ox/model/types.hpp @@ -32,14 +32,14 @@ namespace ox { namespace types { constexpr auto String = "B.string"; constexpr auto Bool = "B.bool"; -constexpr auto Uint8 = "B.uint8_t"; -constexpr auto Uint16 = "B.uint16_t"; -constexpr auto Uint32 = "B.uint32_t"; -constexpr auto Uint64 = "B.uint64_t"; -constexpr auto Int8 = "B.int8_t"; -constexpr auto Int16 = "B.int16_t"; -constexpr auto Int32 = "B.int32_t"; -constexpr auto Int64 = "B.int64_t"; +constexpr auto Uint8 = "B.uint8"; +constexpr auto Uint16 = "B.uint16"; +constexpr auto Uint32 = "B.uint32"; +constexpr auto Uint64 = "B.uint64"; +constexpr auto Int8 = "B.int8"; +constexpr auto Int16 = "B.int16"; +constexpr auto Int32 = "B.int32"; +constexpr auto Int64 = "B.int64"; } template