diff mbox series

[committed] libstdc++: Remove obsolete comment in <string>

Message ID a7dc6260-d1af-95fc-c8db-0419c7dee5a3@gmail.com
State New
Headers show
Series [committed] libstdc++: Remove obsolete comment in <string> | expand

Commit Message

François Dumont July 9, 2022, 12:25 p.m. UTC
libstdc++: Remove obsolete comment in <string> header

     The comment is obsolete because char_traits.h do not include 
stl_algobase.h
     anymore and stl_algobase.h is included directly from <string> a few 
lines
     below.

     libstdc++-v3/ChangeLog:

             * include/std/string: Remove obsolete comment about 
char_traits.h including
             stl_algobase.h.

François

Comments

Jonathan Wakely July 9, 2022, 3:46 p.m. UTC | #1
On Sat, 9 Jul 2022 at 13:26, François Dumont via Libstdc++
<libstdc++@gcc.gnu.org> wrote:
>
>     libstdc++: Remove obsolete comment in <string> header
>
>      The comment is obsolete because char_traits.h do not include
> stl_algobase.h
>      anymore and stl_algobase.h is included directly from <string> a few
> lines
>      below.

Nice, thanks


>
>      libstdc++-v3/ChangeLog:
>
>              * include/std/string: Remove obsolete comment about
> char_traits.h including
>              stl_algobase.h.
>
> François
diff mbox series

Patch

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 <bits/c++config.h>
 #include <bits/stringfwd.h>
-#include <bits/char_traits.h>  // NB: In turn includes stl_algobase.h
+#include <bits/char_traits.h>
 #include <bits/allocator.h>
 #include <bits/cpp_type_traits.h>
 #include <bits/localefwd.h>    // For operators >>, <<, and getline.