[ox/model] Change B:* type names to B.*

This commit is contained in:
Gary Talent 2022-07-09 21:30:11 -05:00
parent e8a3f5ea9a
commit 793f635d2c

View File

@ -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<typename T>