
Signature
SpamTrap@gmx.de is never read
I'm Schobi at suespammers dot org
"Sometimes compilers are so much more reasonable than people."
Scott Meyers
> Hi,
>
[quoted text clipped - 41 lines]
>
> I think this is a bug.
I think you're right! Sorry about that. This will be fixed for the
next patch. If you would like to patch up your own version of <bitset>,
open it up, go to line 599.
Change:
data_ = mask;
to:
data_ = mask ? mask : (unsigned long)(-1);
Go to line 648.
Change:
data_ &= mask;
to:
if (mask)
data_ &= mask;
No need to recompile the C++ library, but rebuild precompiled headers if
you use them.
My apologies again for the inconvenience this caused you, and thanks
very much for reporting it.
-Howard
Hendrik Schober - 05 Dec 2003 16:44 GMT
> [...]
> I think you're right! Sorry about that. This will be fixed for the
> next patch. If you would like to patch up your own version [...]
Thanks for the ACK, Howard.
> -Howard
Schobi

Signature
SpamTrap@gmx.de is never read
I'm Schobi at suespammers dot org
"Sometimes compilers are so much more reasonable than people."
Scott Meyers