Merged revisions 40857-40860 via svnmerge from

https://svn.boost.org/svn/boost/trunk

........
  r40858 | eric_niebler | 2007-11-06 14:18:11 -0800 (Tue, 06 Nov 2007) | 1 line
  
  update example.vcproj
........
  r40859 | fcacciola | 2007-11-06 14:20:38 -0800 (Tue, 06 Nov 2007) | 1 line
  
  Added explicit failures for newly discovered GCC const ref binding bug (see Ticket #1301)
........
  r40860 | fcacciola | 2007-11-06 14:21:43 -0800 (Tue, 06 Nov 2007) | 1 line
  
  Fixed intention in the added binding test
........


[SVN r40861]
This commit is contained in:
Eric Niebler
2007-11-06 22:24:03 +00:00
parent 0326c44711
commit 86dcda219a

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