mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-24 16:06:16 +08:00
type_traits (__is_copy_assignable_impl, [...]): Fix typos.
2011-06-09 Paolo Carlini <paolo.carlini@oracle.com> * include/std/type_traits (__is_copy_assignable_impl, __is_nt_copy_assignable_impl): Fix typos. From-SVN: r174840
This commit is contained in:
parent
8ced31fe6d
commit
9b3a81dacd
@ -1,3 +1,8 @@
|
||||
2011-06-09 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
* include/std/type_traits (__is_copy_assignable_impl,
|
||||
__is_nt_copy_assignable_impl): Fix typo.
|
||||
|
||||
2011-06-08 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
* include/ext/extptr_allocator.h: Include <ext/numeric_traits.h>
|
||||
|
@ -1029,7 +1029,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||
|
||||
template<typename _Tp>
|
||||
struct __is_copy_assignable_impl<_Tp, false>
|
||||
: public is_assignable<_Tp&, const _Tp&&>
|
||||
: public is_assignable<_Tp&, const _Tp&>
|
||||
{ };
|
||||
|
||||
/// is_copy_assignable
|
||||
@ -1077,7 +1077,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||
|
||||
template<typename _Tp>
|
||||
struct __is_nt_copy_assignable_impl<_Tp, false>
|
||||
: public is_nothrow_assignable<_Tp&, const _Tp&&>
|
||||
: public is_nothrow_assignable<_Tp&, const _Tp&>
|
||||
{ };
|
||||
|
||||
/// is_nothrow_copy_assignable
|
||||
|
Loading…
Reference in New Issue
Block a user