[BW]: [Ign] Fixed compile errors on MSVC.

This commit is contained in:
vogel76 2014-01-31 14:06:57 +01:00
parent 52a4a46cca
commit 21558dbd70

View file

@ -23,8 +23,8 @@ namespace fc
enum_type& operator=( IntType i ) { value = (EnumType)i; return *this;}
enum_type& operator=( EnumType i ) { value = i; return *this;}
bool operator<( EnumType i ) { return value < i; }
bool operator>( EnumType i ) { return value < i; }
bool operator<( EnumType i ) const { 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;}