zero: Added support for initializing bool

This commit is contained in:
Henry Weller 2016-03-22 10:35:13 +00:00
parent b8031d592b
commit b49a71a402

View file

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