mirror of
https://github.com/boostorg/optional.git
synced 2025-07-13 20:36:38 +02:00
Fixed intention in the added binding test
[SVN r40860]
This commit is contained in:
@ -350,7 +350,7 @@ void test_binding()
|
||||
optional<int const&> orci1 = ci ;
|
||||
BOOST_CHECK( &(*orci1) == &ci ) ;
|
||||
|
||||
optional<int const&> orci2 = ci ;
|
||||
optional<int const&> orci2(ci) ;
|
||||
BOOST_CHECK( &(*orci2) == &ci ) ;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user