compile fix

This commit is contained in:
Aleksandar Fabijanic 2012-09-12 02:26:01 +00:00
parent 9ad1effd8b
commit b99dd6ddb0

View File

@ -146,7 +146,7 @@ public:
bool operator!=(const C& value) const
/// Compares Nullable with value for non equality
{
return !(*this == other);
return _value != value;
}
bool operator!=(const Nullable<C>& other) const