1

我正在移植项目以使用 4.2 与 3.4.6 进行编译

在 gcc 4.2 中编译以下代码时出现错误,而它在 gcc3.4.6 中工作正常

我尝试使用 BOOST_MPL_ASSERT 但没有成功。

template< uint64_t N , class T >
    struct count
    {
        BOOST_STATIC_ASSERT( _to_bool_< typename _is_integer_<T>::value >::VALUE == true );
        //BOOST_MPL_ASSERT( ( bool_< _to_bool_< typename _is_integer_<T>::value >::VALUE == true > ) );

        static
        uint64_t compute( T const & p_arg ) {
            enum { VALUE = (  N >> 1 ),
                   MASK  = ( ( ( 1UL << VALUE ) - 1 )  ) } ;


            return   count < VALUE, T >::compute( MASK & ( p_arg >> VALUE ) )
                   + count < VALUE, T >::compute( p_arg & MASK  );
        }
    };

导致错误的代码行

if( count< static_cast< uint64_t >( 64 ), uint64_t >::compute( p_max_block_size ) > 1 ) {
                    set_fail_bit();
                    return 0;
                }
4

0 回答 0