Created on 2000-09-03.00:00:00 last changed 171 months ago
Proposed resolution:
Change 17.3.2.1.2 [lib.bitmask.types] operator~ from:
bitmask operator~ ( bitmask X ) { return static_cast< bitmask>(static_cast<int_type>(~ X)); }
to:
bitmask operator~ ( bitmask X ) { return static_cast< bitmask>(~static_cast<int_type>(X)); }
The ~ operation should be applied after the cast to int_type.
History | |||
---|---|---|---|
Date | User | Action | Args |
2010-10-21 18:28:33 | admin | set | messages: + msg2041 |
2000-09-03 00:00:00 | admin | create |