aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2021-08-27 22:10:43 +0100
committerJonathan Wakely <jwakely@redhat.com>2021-08-28 11:52:22 +0100
commitdd3e5859fc16701acb73f59220c8c964af9f713b (patch)
treef6037d86a978b23b64f18ef3c5d9fb8fc4663883
parent07b990ee23e0c7a92d362dbb25fd5d57d95eb8be (diff)
downloadgcc-dd3e5859fc16701acb73f59220c8c964af9f713b.zip
gcc-dd3e5859fc16701acb73f59220c8c964af9f713b.tar.gz
gcc-dd3e5859fc16701acb73f59220c8c964af9f713b.tar.bz2
libstdc++: Fix comment typo
Signed-off-by: Jonathan Wakely <jwakely@redhat.com> libstdc++-v3/ChangeLog: * include/bits/stl_uninitialized.h: Fix typo in comment.
-rw-r--r--libstdc++-v3/include/bits/stl_uninitialized.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/stl_uninitialized.h b/libstdc++-v3/include/bits/stl_uninitialized.h
index ddc1405..2fee1e1 100644
--- a/libstdc++-v3/include/bits/stl_uninitialized.h
+++ b/libstdc++-v3/include/bits/stl_uninitialized.h
@@ -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);