This commit is contained in:
Lynix 2019-11-09 15:34:25 +01:00
parent 57958056d6
commit ae996ae09d
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ namespace Nz
template<typename E>
void Flags<E>::Clear(const Flags& flags)
{
m_value &= ~flags;
m_value &= ~flags.m_value;
}
/*!
@ -74,7 +74,7 @@ namespace Nz
template<typename E>
void Flags<E>::Set(const Flags& flags)
{
m_value |= flags;
m_value |= flags.m_value;
}
/*!