aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gsl/gsl_byte16
1 files changed, 8 insertions, 8 deletions
diff --git a/gsl/gsl_byte b/gsl/gsl_byte
index 5134032..8f57f67 100644
--- a/gsl/gsl_byte
+++ b/gsl/gsl_byte
@@ -26,7 +26,7 @@
// constexpr is not understood
#pragma push_macro("constexpr")
-#define constexpr /*constexpr*/
+#define constexpr /*constexpr*/
// noexcept is not understood
#pragma push_macro("noexcept")
@@ -68,37 +68,37 @@ constexpr byte operator>>(byte b, IntegerType shift) noexcept
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));
}
-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));
}
-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));
}
-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));
}
-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));
}
-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));
}
-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>>
constexpr IntegerType to_integer(byte b) noexcept