I have the Compiler Error C2071 when I try to implement the explicit operator bool:
class C
{
public:
explicit operator bool() const
{
return !!*this;
}
};
Why? How can I solve this problem?
I'm using Visual Studio 2012 RC.
return true;. I suspect the OP implemented it this way becauseoperator!is already overloaded with the desired semantics, but just not included in the sample code. – R. Martinho Fernandes Jul 6 '12 at 15:30