File tree Expand file tree Collapse file tree 6 files changed +6
-10
lines changed Expand file tree Collapse file tree 6 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -853,7 +853,7 @@ class _LIBCPP_TEMPLATE_VIS function<_Rp(_ArgTypes...)>
853
853
854
854
// construct/copy/destroy:
855
855
_LIBCPP_HIDE_FROM_ABI function () _NOEXCEPT {}
856
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI function (nullptr_t ) _NOEXCEPT {}
856
+ _LIBCPP_HIDE_FROM_ABI function (nullptr_t ) _NOEXCEPT {}
857
857
_LIBCPP_HIDE_FROM_ABI function (const function&);
858
858
_LIBCPP_HIDE_FROM_ABI function (function&&) _NOEXCEPT;
859
859
template <class _Fp , class = _EnableIfLValueCallable<_Fp>>
Original file line number Diff line number Diff line change @@ -1472,7 +1472,7 @@ public:
1472
1472
1473
1473
_LIBCPP_HIDE_FROM_ABI void swap (__packaged_task_function&) _NOEXCEPT;
1474
1474
1475
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI _Rp operator ()(_ArgTypes...) const ;
1475
+ _LIBCPP_HIDE_FROM_ABI _Rp operator ()(_ArgTypes...) const ;
1476
1476
};
1477
1477
1478
1478
template <class _Rp , class ... _ArgTypes>
Original file line number Diff line number Diff line change @@ -5544,9 +5544,7 @@ public:
5544
5544
5545
5545
_LIBCPP_HIDE_FROM_ABI bool operator ==(const regex_token_iterator& __x) const ;
5546
5546
#if _LIBCPP_STD_VER >= 20
5547
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI bool operator ==(default_sentinel_t ) const {
5548
- return *this == regex_token_iterator ();
5549
- }
5547
+ _LIBCPP_HIDE_FROM_ABI bool operator ==(default_sentinel_t ) const { return *this == regex_token_iterator (); }
5550
5548
#endif
5551
5549
#if _LIBCPP_STD_VER < 20
5552
5550
_LIBCPP_HIDE_FROM_ABI bool operator !=(const regex_token_iterator& __x) const { return !(*this == __x); }
Original file line number Diff line number Diff line change @@ -854,7 +854,7 @@ class _LIBCPP_TEMPLATE_VIS function<_Rp(_ArgTypes...)>
854
854
855
855
// construct/copy/destroy:
856
856
_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 {}
858
858
_LIBCPP_HIDE_FROM_ABI function (const function&);
859
859
_LIBCPP_HIDE_FROM_ABI function (function&&) _NOEXCEPT;
860
860
template <class _Fp , class = _EnableIfLValueCallable<_Fp>>
Original file line number Diff line number Diff line change @@ -1492,7 +1492,7 @@ public:
1492
1492
1493
1493
_LIBCPP_HIDE_FROM_ABI void swap (__packaged_task_function&) _NOEXCEPT;
1494
1494
1495
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI _Rp operator ()(_ArgTypes...) const ;
1495
+ _LIBCPP_HIDE_FROM_ABI _Rp operator ()(_ArgTypes...) const ;
1496
1496
};
1497
1497
1498
1498
template <class _Rp , class ... _ArgTypes>
Original file line number Diff line number Diff line change @@ -5548,9 +5548,7 @@ public:
5548
5548
5549
5549
_LIBCPP_HIDE_FROM_ABI bool operator ==(const regex_token_iterator& __x) const ;
5550
5550
# if _LIBCPP_STD_VER >= 20
5551
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI bool operator ==(default_sentinel_t ) const {
5552
- return *this == regex_token_iterator ();
5553
- }
5551
+ _LIBCPP_HIDE_FROM_ABI bool operator ==(default_sentinel_t ) const { return *this == regex_token_iterator (); }
5554
5552
# endif
5555
5553
# if _LIBCPP_STD_VER < 20
5556
5554
_LIBCPP_HIDE_FROM_ABI bool operator !=(const regex_token_iterator& __x) const { return !(*this == __x); }
You can’t perform that action at this time.
0 commit comments