Skip to content

Commit 116d818

Browse files
committed
More CI fixes
1 parent ceca589 commit 116d818

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__exception/exception_ptr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)