From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id EDE63385843F; Wed, 5 Jan 2022 13:47:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EDE63385843F MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-6262] libstdc++: Fix comments in std::forward_list tests X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 76a45931ab7c831e32cebf13a6317e5e142f8151 X-Git-Newrev: 749ee73406d31c7104c64bb7bf84780dea187d48 Message-Id: <20220105134758.EDE63385843F@sourceware.org> Date: Wed, 5 Jan 2022 13:47:58 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Jan 2022 13:47:59 -0000 https://gcc.gnu.org/g:749ee73406d31c7104c64bb7bf84780dea187d48 commit r12-6262-g749ee73406d31c7104c64bb7bf84780dea187d48 Author: Jonathan Wakely Date: Wed Jan 5 11:14:02 2022 +0000 libstdc++: Fix comments in std::forward_list tests libstdc++-v3/ChangeLog: * testsuite/23_containers/forward_list/operations/1.cc: Fill in placeholders in comments. * testsuite/23_containers/forward_list/operations/2.cc: Likewise. * testsuite/23_containers/forward_list/operations/3.cc: Likewise. * testsuite/23_containers/forward_list/operations/4.cc: Likewise. * testsuite/23_containers/forward_list/operations/5.cc: Likewise. * testsuite/23_containers/forward_list/operations/6.cc: Likewise. * testsuite/23_containers/forward_list/operations/7.cc: Likewise. Diff: --- libstdc++-v3/testsuite/23_containers/forward_list/operations/1.cc | 8 ++++---- libstdc++-v3/testsuite/23_containers/forward_list/operations/2.cc | 2 +- libstdc++-v3/testsuite/23_containers/forward_list/operations/3.cc | 2 +- libstdc++-v3/testsuite/23_containers/forward_list/operations/4.cc | 2 +- libstdc++-v3/testsuite/23_containers/forward_list/operations/5.cc | 4 ++-- libstdc++-v3/testsuite/23_containers/forward_list/operations/6.cc | 4 ++-- libstdc++-v3/testsuite/23_containers/forward_list/operations/7.cc | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/1.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/1.cc index 776e672513d..32b10fc3975 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/1.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/1.cc @@ -17,13 +17,13 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include // This test verifies the following: -// +// splice_after for entire list void test01() { @@ -41,7 +41,7 @@ test01() } // This test verifies the following: -// +// splice_after for iterator range void test02() { @@ -70,7 +70,7 @@ test02() } // This test verifies the following: -// +// splice_after for single element void test03() { diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/2.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/2.cc index ed6d12ad2bc..9885392df32 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/2.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/2.cc @@ -17,7 +17,7 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/3.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/3.cc index f0d7cd1878e..f67ecd13dff 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/3.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/3.cc @@ -17,7 +17,7 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/4.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/4.cc index 06fa0742f32..92fd0a006d8 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/4.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/4.cc @@ -17,7 +17,7 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/5.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/5.cc index 9b94f7e9c72..a772c36793c 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/5.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/5.cc @@ -17,13 +17,13 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include // This test verifies the following: -// +// merge void test01() { diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/6.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/6.cc index ed6d7d36b8d..cd3c74bd08d 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/6.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/6.cc @@ -17,7 +17,7 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include @@ -40,7 +40,7 @@ template }; // This test verifies the following: -// +// sort void test01() { diff --git a/libstdc++-v3/testsuite/23_containers/forward_list/operations/7.cc b/libstdc++-v3/testsuite/23_containers/forward_list/operations/7.cc index b7922820dda..8036f90d459 100644 --- a/libstdc++-v3/testsuite/23_containers/forward_list/operations/7.cc +++ b/libstdc++-v3/testsuite/23_containers/forward_list/operations/7.cc @@ -17,7 +17,7 @@ // with this library; see the file COPYING3. If not see // . -// 23.2.3.n forward_list xxx [lib.forward_list.xxx] +// C++11 23.3.4.6 Operations [forwardlist.ops] #include #include @@ -25,7 +25,7 @@ #include // This test verifies the following: -// +// reverse void test01() {