mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 22:16:34 +00:00
[libc++] Remove duplicated _LIBCPP_HIDE_FROM_ABI from a few declarations (#122323)
This commit is contained in:
parent
5d26a6d759
commit
dab6463e74
@ -853,7 +853,7 @@ public:
|
||||
|
||||
// construct/copy/destroy:
|
||||
_LIBCPP_HIDE_FROM_ABI function() _NOEXCEPT {}
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI function(nullptr_t) _NOEXCEPT {}
|
||||
_LIBCPP_HIDE_FROM_ABI function(nullptr_t) _NOEXCEPT {}
|
||||
_LIBCPP_HIDE_FROM_ABI function(const function&);
|
||||
_LIBCPP_HIDE_FROM_ABI function(function&&) _NOEXCEPT;
|
||||
template <class _Fp, class = _EnableIfLValueCallable<_Fp>>
|
||||
|
@ -1472,7 +1472,7 @@ public:
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI void swap(__packaged_task_function&) _NOEXCEPT;
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI _Rp operator()(_ArgTypes...) const;
|
||||
_LIBCPP_HIDE_FROM_ABI _Rp operator()(_ArgTypes...) const;
|
||||
};
|
||||
|
||||
template <class _Rp, class... _ArgTypes>
|
||||
|
@ -5544,9 +5544,7 @@ public:
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI bool operator==(const regex_token_iterator& __x) const;
|
||||
#if _LIBCPP_STD_VER >= 20
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI bool operator==(default_sentinel_t) const {
|
||||
return *this == regex_token_iterator();
|
||||
}
|
||||
_LIBCPP_HIDE_FROM_ABI bool operator==(default_sentinel_t) const { return *this == regex_token_iterator(); }
|
||||
#endif
|
||||
#if _LIBCPP_STD_VER < 20
|
||||
_LIBCPP_HIDE_FROM_ABI bool operator!=(const regex_token_iterator& __x) const { return !(*this == __x); }
|
||||
|
@ -854,7 +854,7 @@ public:
|
||||
|
||||
// construct/copy/destroy:
|
||||
_LIBCPP_HIDE_FROM_ABI function() _NOEXCEPT {}
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI function(nullptr_t) _NOEXCEPT {}
|
||||
_LIBCPP_HIDE_FROM_ABI function(nullptr_t) _NOEXCEPT {}
|
||||
_LIBCPP_HIDE_FROM_ABI function(const function&);
|
||||
_LIBCPP_HIDE_FROM_ABI function(function&&) _NOEXCEPT;
|
||||
template <class _Fp, class = _EnableIfLValueCallable<_Fp>>
|
||||
|
@ -1492,7 +1492,7 @@ public:
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI void swap(__packaged_task_function&) _NOEXCEPT;
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI _Rp operator()(_ArgTypes...) const;
|
||||
_LIBCPP_HIDE_FROM_ABI _Rp operator()(_ArgTypes...) const;
|
||||
};
|
||||
|
||||
template <class _Rp, class... _ArgTypes>
|
||||
|
@ -5548,9 +5548,7 @@ public:
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI bool operator==(const regex_token_iterator& __x) const;
|
||||
# if _LIBCPP_STD_VER >= 20
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDE_FROM_ABI bool operator==(default_sentinel_t) const {
|
||||
return *this == regex_token_iterator();
|
||||
}
|
||||
_LIBCPP_HIDE_FROM_ABI bool operator==(default_sentinel_t) const { return *this == regex_token_iterator(); }
|
||||
# endif
|
||||
# if _LIBCPP_STD_VER < 20
|
||||
_LIBCPP_HIDE_FROM_ABI bool operator!=(const regex_token_iterator& __x) const { return !(*this == __x); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user