zero: Added support for initializing bool

This commit is contained in:
Henry Weller
2016-03-22 10:35:13 +00:00
parent 7e5d9982a7
commit 0386551796

View File

@ -54,6 +54,12 @@ public:
zero() zero()
{} {}
//- Return 0 for bool
inline operator bool() const
{
return 0;
}
//- Return 0 for label //- Return 0 for label
inline operator label() const inline operator label() const
{ {