Cleanup whitespace in <variant>. NFC.

llvm-svn: 366026
This commit is contained in:
Eric Fiselier 2019-07-14 18:31:55 +00:00
parent 273857d1ea
commit aae0cb67ed
1 changed files with 7 additions and 11 deletions

View File

@ -1089,14 +1089,6 @@ private:
}
};
template <class... _Types>
struct __overload;
template <>
struct __overload<> { void operator()() const; };
struct __no_narrowing_check {
template <class _Dest, class _Source>
using _Apply = __identity<_Dest>;
@ -1120,14 +1112,18 @@ using __check_for_narrowing = typename _If<
>::template _Apply<_Dest, _Source>;
template <class... _Types>
struct __overload;
template <>
struct __overload<> { void operator()() const; };
template <class _Tp, class... _Types>
struct __overload<_Tp, _Types...> : __overload<_Types...> {
using __overload<_Types...>::operator();
template <class _Up>
auto operator()(_Tp, _Up&&) const ->
__check_for_narrowing<_Tp, _Up>;
auto operator()(_Tp, _Up&&) const -> __check_for_narrowing<_Tp, _Up>;
};
template <class _Base, class _Tp>