Potential bug? Vadim Lebedev (vlebedev@aplio.fr)
Sat, 17 Jun 2000 16:33:52 +0200

Hello,

Browsing through the sources of Set.hxx i've found following

Set32& operator&=(const Set32& that)
{ bits |= that.bits; return *this; }

Set32& operator|=(const Set32& that)
{ bits &= that.bits; return *this; }

Is it a typo or purposeful inversion of the operator meanings?

Vadim
P.S. Please CC me the answer i'm not yet subscribed on the list...