Compare commits

..

2 Commits

Author SHA1 Message Date
40dcc810e7 Branch for development of boost.system related changes
[SVN r40931]
2007-11-08 14:20:16 +00:00
05a685b035 Fixed intention in the added binding test
[SVN r40860]
2007-11-06 22:21:43 +00:00

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