File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libcxx/include/__exception Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,11 +84,11 @@ class _LIBCPP_EXPORTED_FROM_ABI exception_ptr {
8484 exception_ptr& operator =(const exception_ptr&) _NOEXCEPT;
8585 ~exception_ptr () _NOEXCEPT;
8686# else // _LIBCPP_BUILDING_LIBRARY
87- _LIBCPP_HIDE_FROM_ABI exception_ptr (const exception_ptr&) _NOEXCEPT : __ptr_(__other.__ptr_) {
87+ _LIBCPP_HIDE_FROM_ABI exception_ptr (const exception_ptr& __other ) _NOEXCEPT : __ptr_(__other.__ptr_) {
8888 if (__ptr_)
8989 __increment_refcount (__ptr_);
9090 }
91- _LIBCPP_HIDE_FROM_ABI exception_ptr& operator =(const exception_ptr&) _NOEXCEPT {
91+ _LIBCPP_HIDE_FROM_ABI exception_ptr& operator =(const exception_ptr& __other ) _NOEXCEPT {
9292 if (__ptr_ == __other.__ptr_ )
9393 return *this ;
9494 if (__other.__ptr_ )
You can’t perform that action at this time.
0 commit comments