mirror of
https://github.com/boostorg/utility.git
synced 2025-07-29 20:37:32 +02:00
Added my long name
[SVN r24869]
This commit is contained in:
@ -73,7 +73,8 @@ void test ( T const& y, T const& z )
|
||||
boost::value_initialized<T> const x_c ;
|
||||
BOOST_TEST ( y == x_c ) ;
|
||||
BOOST_TEST ( y == get(x_c) ) ;
|
||||
static_cast<T&>(x_c) = z ;
|
||||
T& x_c_ref = x_c ;
|
||||
x_c_ref = z ;
|
||||
BOOST_TEST ( x_c == z ) ;
|
||||
#ifdef PRODUCE_ERROR_1
|
||||
get(x_c) = z ; // this should produce an ERROR
|
||||
|
Reference in New Issue
Block a user