From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1720) id 4D879385700D; Sat, 9 Jul 2022 12:25:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4D879385700D MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: =?utf-8?b?RnJhbuCkpeCkiG9pcyBEdW1vbnQ=?= To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-1585] libstdc++: Remove obsolete comment in header X-Act-Checkin: gcc X-Git-Author: =?utf-8?q?Fran=C3=A7ois_Dumont?= X-Git-Refname: refs/heads/master X-Git-Oldrev: b434c94bf7a5d4bb9ca8f0b5442ca85b43f32a9a X-Git-Newrev: 8f1802003d2b0c516362ea816698317129838bcd Message-Id: <20220709122528.4D879385700D@sourceware.org> Date: Sat, 9 Jul 2022 12:25:28 +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: Sat, 09 Jul 2022 12:25:28 -0000 https://gcc.gnu.org/g:8f1802003d2b0c516362ea816698317129838bcd commit r13-1585-g8f1802003d2b0c516362ea816698317129838bcd Author: François Dumont Date: Sat Jul 9 14:18:15 2022 +0200 libstdc++: Remove obsolete comment in header The comment is obsolete because char_traits.h do not include stl_algobase.h anymore and stl_algobase.h is included directly from a few lines below. libstdc++-v3/ChangeLog: * include/std/string: Remove obsolete comment about char_traits.h including stl_algobase.h. Diff: --- libstdc++-v3/include/std/string | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/std/string b/libstdc++-v3/include/std/string index 37a4aaba9cd..62ecdb3af45 100644 --- a/libstdc++-v3/include/std/string +++ b/libstdc++-v3/include/std/string @@ -37,7 +37,7 @@ #include #include -#include // NB: In turn includes stl_algobase.h +#include #include #include #include // For operators >>, <<, and getline.