mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Added inline to byte member functions to fix MSVC 2013 warnings
This commit is contained in:
commit
e40729a561
14
gsl/gsl_byte
14
gsl/gsl_byte
@ -68,37 +68,37 @@ constexpr byte operator>>(byte b, IntegerType shift) noexcept
|
|||||||
return byte(static_cast<unsigned char>(b) >> shift);
|
return byte(static_cast<unsigned char>(b) >> shift);
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte& operator|=(byte& l, byte r) noexcept
|
inline constexpr byte& operator|=(byte& l, byte r) noexcept
|
||||||
{
|
{
|
||||||
return l = byte(static_cast<unsigned char>(l) | static_cast<unsigned char>(r));
|
return l = byte(static_cast<unsigned char>(l) | static_cast<unsigned char>(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte operator|(byte l, byte r) noexcept
|
inline constexpr byte operator|(byte l, byte r) noexcept
|
||||||
{
|
{
|
||||||
return byte(static_cast<unsigned char>(l) | static_cast<unsigned char>(r));
|
return byte(static_cast<unsigned char>(l) | static_cast<unsigned char>(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte& operator&=(byte& l, byte r) noexcept
|
inline constexpr byte& operator&=(byte& l, byte r) noexcept
|
||||||
{
|
{
|
||||||
return l = byte(static_cast<unsigned char>(l) & static_cast<unsigned char>(r));
|
return l = byte(static_cast<unsigned char>(l) & static_cast<unsigned char>(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte operator&(byte l, byte r) noexcept
|
inline constexpr byte operator&(byte l, byte r) noexcept
|
||||||
{
|
{
|
||||||
return byte(static_cast<unsigned char>(l) & static_cast<unsigned char>(r));
|
return byte(static_cast<unsigned char>(l) & static_cast<unsigned char>(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte& operator^=(byte& l, byte r) noexcept
|
inline constexpr byte& operator^=(byte& l, byte r) noexcept
|
||||||
{
|
{
|
||||||
return l = byte(static_cast<unsigned char>(l) ^ static_cast<unsigned char>(r));
|
return l = byte(static_cast<unsigned char>(l) ^ static_cast<unsigned char>(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte operator^(byte l, byte r) noexcept
|
inline constexpr byte operator^(byte l, byte r) noexcept
|
||||||
{
|
{
|
||||||
return byte(static_cast<unsigned char>(l) ^ static_cast<unsigned char>(r));
|
return byte(static_cast<unsigned char>(l) ^ static_cast<unsigned char>(r));
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr byte operator~(byte b) noexcept { return byte(~static_cast<unsigned char>(b)); }
|
inline constexpr byte operator~(byte b) noexcept { return byte(~static_cast<unsigned char>(b)); }
|
||||||
|
|
||||||
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
||||||
constexpr IntegerType to_integer(byte b) noexcept
|
constexpr IntegerType to_integer(byte b) noexcept
|
||||||
|
Loading…
Reference in New Issue
Block a user