Ticket #3535: spirit.patch
File spirit.patch, 860 bytes (added by , 13 years ago) |
---|
-
boost/spirit/home/phoenix/operator/detail/io.hpp
31 31 { 32 32 static T x; 33 33 BOOST_STATIC_CONSTANT(bool, 34 value = sizeof(detail::ostream_test( addressof(x))) == sizeof(yes));34 value = sizeof(detail::ostream_test(boost::addressof(x))) == sizeof(yes)); 35 35 }; 36 36 37 37 template <typename T> … … 39 39 { 40 40 static T x; 41 41 BOOST_STATIC_CONSTANT(bool, 42 value = sizeof(detail::istream_test( addressof(x))) == sizeof(yes));42 value = sizeof(detail::istream_test(boost::addressof(x))) == sizeof(yes)); 43 43 }; 44 44 45 45 template <typename T0, typename T1>