This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [PATCH] PR libstdc++/69608 Move semantics for strstreambuf
- From: Jonathan Wakely <jwakely at redhat dot com>
- To: libstdc++ at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Wed, 2 May 2018 17:27:50 +0100
- Subject: Re: [PATCH] PR libstdc++/69608 Move semantics for strstreambuf
- References: <20180502162535.GA22893@redhat.com>
On 02/05/18 17:25 +0100, Jonathan Wakely wrote:
+int
+main()
+{
+ test01();
+ test02();
+ test03();
+ test04();
+ test05();
+ test05();
After committing this I noticed test05() is run twice. Fixed by this
patch.
commit 81d3cafc6bd00d44413adca3420f75c52870b1eb
Author: Jonathan Wakely <jwakely@redhat.com>
Date: Wed May 2 17:26:19 2018 +0100
Remove duplicate function call in test
* testsuite/backward/strstream_move.cc: Remove duplicate function
call.
diff --git a/libstdc++-v3/testsuite/backward/strstream_move.cc b/libstdc++-v3/testsuite/backward/strstream_move.cc
index 7dfbd337901..dbe789cbc6f 100644
--- a/libstdc++-v3/testsuite/backward/strstream_move.cc
+++ b/libstdc++-v3/testsuite/backward/strstream_move.cc
@@ -235,7 +235,6 @@ main()
test03();
test04();
test05();
- test05();
test06();
test07();
test08();