@@ -518,13 +518,13 @@ struct __policy {
518518
519519 _LIBCPP_HIDE_FROM_ABI static const __policy* __create_empty () {
520520 static constexpr __policy __policy = {
521- nullptr ,
522- nullptr ,
523- true ,
521+ nullptr ,
522+ nullptr ,
523+ true ,
524524# if _LIBCPP_HAS_RTTI
525- &typeid (void )
525+ &typeid (void )
526526# else
527- nullptr
527+ nullptr
528528# endif
529529 };
530530 return &__policy;
@@ -545,13 +545,13 @@ struct __policy {
545545 template <typename _Fun>
546546 _LIBCPP_HIDE_FROM_ABI static const __policy* __choose_policy (/* is_small = */ false_type) {
547547 static constexpr __policy __policy = {
548- &__large_clone<_Fun>,
549- &__large_destroy<_Fun>,
550- false ,
548+ &__large_clone<_Fun>,
549+ &__large_destroy<_Fun>,
550+ false ,
551551# if _LIBCPP_HAS_RTTI
552- &typeid (typename _Fun::_Target)
552+ &typeid (typename _Fun::_Target)
553553# else
554- nullptr
554+ nullptr
555555# endif
556556 };
557557 return &__policy;
@@ -560,13 +560,13 @@ struct __policy {
560560 template <typename _Fun>
561561 _LIBCPP_HIDE_FROM_ABI static const __policy* __choose_policy (/* is_small = */ true_type) {
562562 static constexpr __policy __policy = {
563- nullptr ,
564- nullptr ,
565- false ,
563+ nullptr ,
564+ nullptr ,
565+ false ,
566566# if _LIBCPP_HAS_RTTI
567- &typeid (typename _Fun::_Target)
567+ &typeid (typename _Fun::_Target)
568568# else
569- nullptr
569+ nullptr
570570# endif
571571 };
572572 return &__policy;
@@ -854,7 +854,7 @@ class _LIBCPP_TEMPLATE_VIS function<_Rp(_ArgTypes...)>
854854
855855 // construct/copy/destroy:
856856 _LIBCPP_HIDE_FROM_ABI function () _NOEXCEPT {}
857- _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI function (nullptr_t ) _NOEXCEPT {}
857+ _LIBCPP_HIDE_FROM_ABI function (nullptr_t ) _NOEXCEPT {}
858858 _LIBCPP_HIDE_FROM_ABI function (const function&);
859859 _LIBCPP_HIDE_FROM_ABI function (function&&) _NOEXCEPT;
860860 template <class _Fp , class = _EnableIfLValueCallable<_Fp>>
0 commit comments