]> git.lyx.org Git - lyx.git/blob - development/attic/boostworkaround.txt
Amend 04beccca: Group some entries in invertedTests
[lyx.git] / development / attic / boostworkaround.txt
1 crc.hpp:
2
3 @@ -280,15 +280,10 @@
4          typedef typename base_type::least  least;
5          typedef typename base_type::fast   fast;
6
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
16
17      };
18
19 @@ -345,11 +340,7 @@
20          BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast )
21 ;
22          #endif
23
24 -#ifdef __DECCXX
25 -           static const least sig_bits = (~( ~(0ul) << Bits));
26 -#else
27          BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits ))
28 );
29 -#endif
30          BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
31
32