File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libcxx/include/__exception Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -127,13 +127,13 @@ class _LIBCPP_EXPORTED_FROM_ABI exception_ptr {
127127
128128# ifndef _LIBCPP_BUILDING_LIBRARY
129129
130- _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE exception_ptr::exception_ptr (const exception_ptr& __other) _NOEXCEPT
130+ _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE inline exception_ptr::exception_ptr (const exception_ptr& __other) _NOEXCEPT
131131 : __ptr_(__other.__ptr_) {
132132 if (__ptr_)
133133 __increment_refcount (__ptr_);
134134}
135135
136- _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE exception_ptr& exception_ptr::operator =(const exception_ptr& __other) _NOEXCEPT {
136+ _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE inline exception_ptr& exception_ptr::operator =(const exception_ptr& __other) _NOEXCEPT {
137137 if (__ptr_ != __other.__ptr_ ) {
138138 if (__other.__ptr_ )
139139 __increment_refcount (__other.__ptr_ );
@@ -144,7 +144,7 @@ _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE exception_ptr& exception_ptr::operator=(con
144144 return *this ;
145145}
146146
147- _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE exception_ptr::~exception_ptr () _NOEXCEPT {
147+ _LIBCPP_EXPORTED_FROM_LIB_INLINEABLE inline exception_ptr::~exception_ptr () _NOEXCEPT {
148148 if (__ptr_)
149149 __decrement_refcount (__ptr_);
150150}
You can’t perform that action at this time.
0 commit comments