Skip to content

Commit 4c75c4e

Browse files
committed
Formatting
1 parent 12373fa commit 4c75c4e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libcxx/include/__exception/exception_ptr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class _LIBCPP_EXPORTED_FROM_ABI exception_ptr {
9090
exception_ptr(const exception_ptr&) _NOEXCEPT;
9191
exception_ptr& operator=(const exception_ptr&) _NOEXCEPT;
9292
~exception_ptr() _NOEXCEPT;
93-
# else // _LIBCPP_BUILDING_LIBRARY
93+
# else // _LIBCPP_BUILDING_LIBRARY
9494
_LIBCPP_HIDE_FROM_ABI exception_ptr(const exception_ptr&) _NOEXCEPT : __ptr_(__other.__ptr_) {
9595
if (__ptr_)
9696
__increment_refcount(__ptr_);

libcxx/src/exception.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ using namespace __cxxabiv1;
2424
# include "support/runtime/exception_pointer_msvc.ipp"
2525
#elif defined(_LIBCPPABI_VERSION)
2626
# include "support/runtime/exception_libcxxabi.ipp"
27-
# include "support/runtime/exception_pointer_refcounted.ipp"
2827
# include "support/runtime/exception_pointer_cxxabi.ipp"
28+
# include "support/runtime/exception_pointer_refcounted.ipp"
2929
#elif defined(LIBCXXRT)
3030
# include "support/runtime/exception_libcxxrt.ipp"
31-
# include "support/runtime/exception_pointer_refcounted.ipp"
3231
# include "support/runtime/exception_pointer_cxxabi.ipp"
32+
# include "support/runtime/exception_pointer_refcounted.ipp"
3333
#elif defined(__GLIBCXX__)
3434
# include "support/runtime/exception_glibcxx.ipp"
35-
# include "support/runtime/exception_pointer_refcounted.ipp"
3635
# include "support/runtime/exception_pointer_glibcxx.ipp"
36+
# include "support/runtime/exception_pointer_refcounted.ipp"
3737
#else
3838
# include "include/atomic_support.h"
3939
# include "support/runtime/exception_fallback.ipp"

0 commit comments

Comments
 (0)