libstdc++: Fix comment typo

Signed-off-by: Jonathan Wakely <jwakely@redhat.com>

libstdc++-v3/ChangeLog:

	* include/bits/stl_uninitialized.h: Fix typo in comment.
This commit is contained in:
Jonathan Wakely 2021-08-27 22:10:43 +01:00
parent 07b990ee23
commit dd3e5859fc
1 changed files with 1 additions and 1 deletions

View 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);