Fixed intention in the added binding test

[SVN r40860]
This commit is contained in:
Fernando Cacciola
2007-11-06 22:21:43 +00:00
parent 3b5b5d82a0
commit 05a685b035

View File

@ -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 ) ;
}