diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2018-06-05 08:37:36 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2018-06-05 08:37:36 +0100 |
commit | d4b695e4b1be4680148fada064d1082b8ba790cf (patch) | |
tree | f776eed29f6c5c084e3a38100f5471b6b038c3e5 | |
parent | ce6efef870d6be5c4d22c8b9500670a19f4f6ea1 (diff) | |
download | gcc-d4b695e4b1be4680148fada064d1082b8ba790cf.zip gcc-d4b695e4b1be4680148fada064d1082b8ba790cf.tar.gz gcc-d4b695e4b1be4680148fada064d1082b8ba790cf.tar.bz2 |
* include/std/type_traits: Fix comment typos.
From-SVN: r261186
-rw-r--r-- | libstdc++-v3/ChangeLog | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/std/type_traits | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a841176..6bdb17b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,7 @@ 2018-06-05 Jonathan Wakely <jwakely@redhat.com> + * include/std/type_traits: Fix comment typos. + * testsuite/27_io/filesystem/operations/read_symlink.cc: XFAIL for mingw* targets. * testsuite/27_io/filesystem/operations/symlink_status.cc: Likewise. diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits index 4397c48..01972d1 100644 --- a/libstdc++-v3/include/std/type_traits +++ b/libstdc++-v3/include/std/type_traits @@ -1641,7 +1641,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION }; // wchar_t, char16_t and char32_t are integral types but are neither - // signed integer types not unsigned integer types, so must be + // signed integer types nor unsigned integer types, so must be // transformed to the unsigned integer type with the smallest rank. // Use the partial specialization for enumeration types to do that. #if defined(_GLIBCXX_USE_WCHAR_T) @@ -1758,7 +1758,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION }; // wchar_t, char16_t and char32_t are integral types but are neither - // signed integer types not unsigned integer types, so must be + // signed integer types nor unsigned integer types, so must be // transformed to the signed integer type with the smallest rank. // Use the partial specialization for enumeration types to do that. #if defined(_GLIBCXX_USE_WCHAR_T) |