From 793f635d2c583056deb04d8c00e9db2ea9074aa8 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Jul 2022 21:30:11 -0500 Subject: [PATCH] [ox/model] Change B:* type names to B.* --- deps/ox/src/ox/model/types.hpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/deps/ox/src/ox/model/types.hpp b/deps/ox/src/ox/model/types.hpp index da65c358..9d5dab9b 100644 --- a/deps/ox/src/ox/model/types.hpp +++ b/deps/ox/src/ox/model/types.hpp @@ -30,16 +30,16 @@ 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 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"; } template