[BW]: [Ign] Fixed compile errors on MSVC.
This commit is contained in:
parent
52a4a46cca
commit
21558dbd70
1 changed files with 2 additions and 2 deletions
|
|
@ -23,8 +23,8 @@ namespace fc
|
||||||
|
|
||||||
enum_type& operator=( IntType i ) { value = (EnumType)i; return *this;}
|
enum_type& operator=( IntType i ) { value = (EnumType)i; return *this;}
|
||||||
enum_type& operator=( EnumType i ) { value = i; return *this;}
|
enum_type& operator=( EnumType i ) { value = i; return *this;}
|
||||||
bool operator<( EnumType i ) { return value < i; }
|
bool operator<( EnumType i ) const { return value < i; }
|
||||||
bool operator>( EnumType i ) { return value < i; }
|
bool operator>( EnumType i ) const { return value < i; }
|
||||||
|
|
||||||
bool operator<(const enum_type& e) const { return value < e.value;}
|
bool operator<(const enum_type& e) const { return value < e.value;}
|
||||||
bool operator>(const enum_type& e) const { return value > e.value;}
|
bool operator>(const enum_type& e) const { return value > e.value;}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue