diff --git a/cpp/Platform.Ranges/Range.h b/cpp/Platform.Ranges/Range.h index c3b59c4..e4e08ed 100644 --- a/cpp/Platform.Ranges/Range.h +++ b/cpp/Platform.Ranges/Range.h @@ -2,7 +2,7 @@ { #define LIMIT_AS_RANGE(type) std::numeric_limits::lowest(), std::numeric_limits::max() - constexpr auto SByte = Range(LIMIT_AS_RANGE(std::int8_t)); + constexpr auto Int8 = Range(LIMIT_AS_RANGE(std::int8_t)); constexpr auto Int16 = Range(LIMIT_AS_RANGE(std::int16_t)); @@ -10,7 +10,7 @@ constexpr auto Int64 = Range(LIMIT_AS_RANGE(std::int64_t)); - constexpr auto Byte = Range(LIMIT_AS_RANGE(std::uint8_t)); + constexpr auto UInt8 = Range(LIMIT_AS_RANGE(std::uint8_t)); constexpr auto UInt16 = Range(LIMIT_AS_RANGE(std::uint16_t)); @@ -18,7 +18,7 @@ constexpr auto UInt64 = Range(LIMIT_AS_RANGE(std::uint64_t)); - constexpr auto Single = Range(LIMIT_AS_RANGE(std::float_t)); + constexpr auto Float = Range(LIMIT_AS_RANGE(std::float_t)); constexpr auto Double = Range(LIMIT_AS_RANGE(std::double_t));