diff options
author | Paolo Carlini <paolo@gcc.gnu.org> | 2013-02-07 15:20:58 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2013-02-07 15:20:58 +0000 |
commit | 54353978a4ba9b8c4d7c5b721b2daaca1b1c8975 (patch) | |
tree | 34c240faac7cd23cb87ddf1241a49caf09ad5059 | |
parent | b31317e44f1b5fd370d79dfdac51828cfd8fdfb2 (diff) | |
download | gcc-54353978a4ba9b8c4d7c5b721b2daaca1b1c8975.zip gcc-54353978a4ba9b8c4d7c5b721b2daaca1b1c8975.tar.gz gcc-54353978a4ba9b8c4d7c5b721b2daaca1b1c8975.tar.bz2 |
pr56193.cc: Tweak.
2013-02-07 Paolo Carlini <paolo.carlini@oracle.com>
* testsuite/27_io/basic_ios/pr56193.cc: Tweak.
From-SVN: r195852
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/basic_ios/pr56193.cc | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 3cc1eec..3c73f1f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,10 @@ +2013-02-07 Paolo Carlini <paolo.carlini@oracle.com> + + * testsuite/27_io/basic_ios/pr56193.cc: Tweak. + 2013-02-06 Edward Smith-Rowland <3dw4rd@verizon.net> + PR libstdc++/56193 * include/bits/basic_ios.h: Replace operator void*() const with explicit operator bool() const in C++11 and greater. * testsuite/27_io/basic_ios/pr56193.cc: New file. diff --git a/libstdc++-v3/testsuite/27_io/basic_ios/pr56193.cc b/libstdc++-v3/testsuite/27_io/basic_ios/pr56193.cc index e97dcdc..79793e2 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ios/pr56193.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ios/pr56193.cc @@ -3,7 +3,7 @@ // 2013-02-06 Edward Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2007-2013 Free Software Foundation, Inc. +// Copyright (C) 2013 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -23,11 +23,9 @@ #include <iostream> // PR libstdc++/56193 - -int +void test01() { std::cout << std::cout; // { dg-error "cannot bind" } } - // { dg-error "initializing argument" "" { target *-*-* } 602 } |