Ticket #1467: ptr_container.patch
File ptr_container.patch, 742 bytes (added by , 15 years ago) |
---|
-
nullable.hpp
45 45 private: 46 46 BOOST_STATIC_CONSTANT( T*, var ); 47 47 public: 48 #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) 49 #pragma warning(push) 50 #pragma warning(disable:6334) 51 #endif 52 48 53 BOOST_STATIC_CONSTANT(bool, value = sizeof( ptr_container_detail::is_nullable( var ) ) 49 54 == sizeof( type_traits::yes_type ) ); 55 56 #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) 57 #pragma warning(pop) 58 #endif 50 59 }; 51 60 52 61 template< class T >