]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Fix comment typo
authorJonathan Wakely <jwakely@redhat.com>
Fri, 27 Aug 2021 21:10:43 +0000 (22:10 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Sat, 28 Aug 2021 10:52:22 +0000 (11:52 +0100)
Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
libstdc++-v3/ChangeLog:

* include/bits/stl_uninitialized.h: Fix typo in comment.

libstdc++-v3/include/bits/stl_uninitialized.h

index ddc1405cb0e660882dfb700e2542f26f709b4703..2fee1e17f00f13f33f482df89dc758d3dc64ee1d 100644 (file)
@@ -162,7 +162,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        _ValueType2;
 
       // _ValueType1 must be trivially-copyable to use memmove, so don't
-      // both optimizing to std::copy if it isn't.
+      // bother optimizing to std::copy if it isn't.
       // XXX Unnecessary because std::copy would check it anyway?
       const bool __can_memmove = __is_trivial(_ValueType1);