Skip to content

Commit ef0afab

Browse files
committed
Undo stray formatting
1 parent be5f620 commit ef0afab

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

libcxx/include/tuple

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,8 +463,8 @@ template <class _Indx, class... _Tp>
463463
struct __tuple_impl;
464464

465465
template <size_t... _Indx, class... _Tp>
466-
struct _LIBCPP_DECLSPEC_EMPTY_BASES
467-
__tuple_impl<__tuple_indices<_Indx...>, _Tp...> : public __tuple_leaf<_Indx, _Tp>... {
466+
struct _LIBCPP_DECLSPEC_EMPTY_BASES __tuple_impl<__tuple_indices<_Indx...>, _Tp...>
467+
: public __tuple_leaf<_Indx, _Tp>... {
468468
_LIBCPP_HIDE_FROM_ABI constexpr __tuple_impl() noexcept(
469469
__all<is_nothrow_default_constructible<_Tp>::value...>::value) {}
470470

libcxx/include/variant

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,8 @@ class _LIBCPP_TEMPLATE_VIS __dtor;
753753

754754
# define _LIBCPP_VARIANT_DESTRUCTOR(destructible_trait, destructor_definition, destroy) \
755755
template <class... _Types> \
756-
class _LIBCPP_TEMPLATE_VIS \
757-
__dtor<__traits<_Types...>, destructible_trait> : public __base<destructible_trait, _Types...> { \
756+
class _LIBCPP_TEMPLATE_VIS __dtor<__traits<_Types...>, destructible_trait> \
757+
: public __base<destructible_trait, _Types...> { \
758758
using __base_type _LIBCPP_NODEBUG = __base<destructible_trait, _Types...>; \
759759
using __index_t _LIBCPP_NODEBUG = typename __base_type::__index_t; \
760760
\
@@ -831,8 +831,8 @@ class _LIBCPP_TEMPLATE_VIS __move_constructor;
831831

832832
# define _LIBCPP_VARIANT_MOVE_CONSTRUCTOR(move_constructible_trait, move_constructor_definition) \
833833
template <class... _Types> \
834-
class _LIBCPP_TEMPLATE_VIS \
835-
__move_constructor<__traits<_Types...>, move_constructible_trait> : public __ctor<__traits<_Types...>> { \
834+
class _LIBCPP_TEMPLATE_VIS __move_constructor<__traits<_Types...>, move_constructible_trait> \
835+
: public __ctor<__traits<_Types...>> { \
836836
using __base_type _LIBCPP_NODEBUG = __ctor<__traits<_Types...>>; \
837837
\
838838
public: \
@@ -958,8 +958,8 @@ class _LIBCPP_TEMPLATE_VIS __move_assignment;
958958

959959
# define _LIBCPP_VARIANT_MOVE_ASSIGNMENT(move_assignable_trait, move_assignment_definition) \
960960
template <class... _Types> \
961-
class _LIBCPP_TEMPLATE_VIS \
962-
__move_assignment<__traits<_Types...>, move_assignable_trait> : public __assignment<__traits<_Types...>> { \
961+
class _LIBCPP_TEMPLATE_VIS __move_assignment<__traits<_Types...>, move_assignable_trait> \
962+
: public __assignment<__traits<_Types...>> { \
963963
using __base_type _LIBCPP_NODEBUG = __assignment<__traits<_Types...>>; \
964964
\
965965
public: \
@@ -997,8 +997,8 @@ class _LIBCPP_TEMPLATE_VIS __copy_assignment;
997997

998998
# define _LIBCPP_VARIANT_COPY_ASSIGNMENT(copy_assignable_trait, copy_assignment_definition) \
999999
template <class... _Types> \
1000-
class _LIBCPP_TEMPLATE_VIS \
1001-
__copy_assignment<__traits<_Types...>, copy_assignable_trait> : public __move_assignment<__traits<_Types...>> { \
1000+
class _LIBCPP_TEMPLATE_VIS __copy_assignment<__traits<_Types...>, copy_assignable_trait> \
1001+
: public __move_assignment<__traits<_Types...>> { \
10021002
using __base_type _LIBCPP_NODEBUG = __move_assignment<__traits<_Types...>>; \
10031003
\
10041004
public: \

0 commit comments

Comments
 (0)