Hello,
Browsing through the sources of Set.hxx i've found following
Set32& operator&=(const Set32& that)
Is it a typo or purposeful inversion of the operator meanings?
Vadim
{ bits |= that.bits; return *this; }
Set32& operator|=(const Set32& that)
{ bits &= that.bits; return *this; }
P.S. Please CC me the answer i'm not yet subscribed on the list...