boost_1_33_1
Dear all,
I suspect that the shift operator of the dynamic_bitset are reversed.
Best regards,
Martin Moene
___
C:\>dynamic_bitset.exe
x :11111
x <<= 1:01111
x >>= 2:11100
/*
* dynamic_bitset bug: operator <<= and >>= interchanged.
*
* cl -GX -ID:/Libraries/boost_1_33_1/ dynamic_bitset.cpp
* cl -GX -IC:/Libraries/boost_1_33_1/ dynamic_bitset.cpp
* cl -GX -I%BOOST% dynamic_bitset.cpp
*/
#include <iostream>
#include