mirror of git://gcc.gnu.org/git/gcc.git
2.cc: Fix to explicitely invoke the copy construtor with or without C++0x mode.
2010-12-01 François Dumont <francois.cppdevs@free.fr>
* testsuite/23_containers/deque/cons/2.cc: Fix to explicitely invoke
the copy construtor with or without C++0x mode.
* testsuite/23_containers/vector/cons/4.cc: Likewise.
From-SVN: r167355
This commit is contained in:
parent
2f64ad0f48
commit
7165791eb5
|
|
@ -1,3 +1,9 @@
|
|||
2010-12-01 François Dumont <francois.cppdevs@free.fr>
|
||||
|
||||
* testsuite/23_containers/deque/cons/2.cc: Fix to explicitely invoke
|
||||
the copy construtor with or without C++0x mode.
|
||||
* testsuite/23_containers/vector/cons/4.cc: Likewise.
|
||||
|
||||
2010-12-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* scripts/extract_symvers.pl: New file.
|
||||
|
|
|
|||
|
|
@ -454,7 +454,8 @@ test_default_ctor_exception_safety()
|
|||
// test
|
||||
try
|
||||
{
|
||||
X a(7);
|
||||
T ref;
|
||||
X a(7, ref);
|
||||
VERIFY( false );
|
||||
}
|
||||
catch (...)
|
||||
|
|
|
|||
|
|
@ -50,7 +50,8 @@ test_default_ctor_exception_gurantee()
|
|||
// run test
|
||||
try
|
||||
{
|
||||
X a(7);
|
||||
T ref;
|
||||
X a(7, ref);
|
||||
VERIFY(false);
|
||||
}
|
||||
catch (...)
|
||||
|
|
|
|||
Loading…
Reference in New Issue