tufte layout files:
[lyx.git] / development / boostworkaround.txt
blob14e81c8b92713951bdeed41a3f7b88c632cd88ad
1 crc.hpp:
3 @@ -280,15 +280,10 @@
4          typedef typename base_type::least  least;
5          typedef typename base_type::fast   fast;
7 -#ifdef __DECCXX
8 -           static const least high_bit = 1ul << (Bits - 1u);
9 -           static const fast high_bit_fast = 1ul << (Bits - 1u);
10 -#else
11          BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits
12           - 1u )) );
13          BOOST_STATIC_CONSTANT( fast, high_bit_fast = (fast( 1u ) << ( Bits
14           - 1u )) );
15 -#endif
17      };
19 @@ -345,11 +340,7 @@
20          BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast )
22          #endif
24 -#ifdef __DECCXX
25 -           static const least sig_bits = (~( ~(0ul) << Bits));
26 -#else
27          BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits ))
29 -#endif
30          BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );