Ticket #1467: ptr_container.patch

File ptr_container.patch, 742 bytes (added by Richard Webb <richard.webb@…>, 15 years ago)
  • nullable.hpp

     
    4545    private:
    4646            BOOST_STATIC_CONSTANT( T*, var );
    4747    public:
     48            #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
     49            #pragma warning(push)
     50            #pragma warning(disable:6334)
     51            #endif
     52
    4853            BOOST_STATIC_CONSTANT(bool, value = sizeof( ptr_container_detail::is_nullable( var ) )
    4954                                                == sizeof( type_traits::yes_type ) );
     55
     56           #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
     57           #pragma warning(pop)
     58           #endif
    5059    };
    5160   
    5261    template< class T >