[libc++] Remove empty namespace std in type_traits. NFCI.

There is an empty `namespace std` in `type_traits` which was originally
used when `std::byte` was added in
c97d8aa866. At some point, the bitwise operators
on `std::byte` got relocated but this empty namespace was left around.
Remove it.

Reviewed By: Quuxplusone, Mordante, #libc

Differential Revision: https://reviews.llvm.org/D111512
This commit is contained in:
Joe Loser 2021-10-10 14:35:00 -04:00
parent 6eb7634f30
commit e53c9251fa
No known key found for this signature in database
GPG Key ID: 1CDBEBC050EA230D
1 changed files with 0 additions and 9 deletions

View File

@ -4175,13 +4175,4 @@ using __maybe_const = conditional_t<_Const, const _Tp, _Tp>;
_LIBCPP_END_NAMESPACE_STD
#if _LIBCPP_STD_VER > 14
// std::byte
namespace std // purposefully not versioned
{
}
#endif
#endif // _LIBCPP_TYPE_TRAITS