Fix typo in operator | for gsl::byte.

This commit is contained in:
Neil MacIntosh 2016-09-06 18:45:53 -07:00 committed by GitHub
parent a360b81805
commit 9e0807f1b1

View File

@ -75,7 +75,7 @@ constexpr byte& operator|=(byte& l, byte r) noexcept
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