Skip to content

Commit 225b03c

Browse files
remove _LIBCPP_STANDALONE_DEBUG
1 parent 4e905fe commit 225b03c

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

libcxx/include/__config

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,12 +1169,6 @@ typedef __char32_t char32_t;
11691169
# define _LIBCPP_NO_SPECIALIZATIONS
11701170
# endif
11711171

1172-
# if __has_cpp_attribute(_Clang::__standalone_debug__)
1173-
# define _LIBCPP_STANDALONE_DEBUG [[_Clang::__standalone_debug__]]
1174-
# else
1175-
# define _LIBCPP_STANDALONE_DEBUG
1176-
# endif
1177-
11781172
# if __has_cpp_attribute(_Clang::__preferred_name__)
11791173
# define _LIBCPP_PREFERRED_NAME(x) [[_Clang::__preferred_name__(x)]]
11801174
# else

libcxx/include/__tree

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,7 @@ public:
560560
};
561561

562562
template <class _VoidPtr>
563-
class _LIBCPP_STANDALONE_DEBUG
564-
__tree_node_base : public __tree_end_node<__rebind_pointer_t<_VoidPtr, __tree_node_base<_VoidPtr> > > {
563+
class __tree_node_base : public __tree_end_node<__rebind_pointer_t<_VoidPtr, __tree_node_base<_VoidPtr> > > {
565564
public:
566565
using pointer = __rebind_pointer_t<_VoidPtr, __tree_node_base>;
567566
using __end_node_pointer _LIBCPP_NODEBUG = __rebind_pointer_t<_VoidPtr, __tree_end_node<pointer> >;
@@ -581,7 +580,7 @@ public:
581580
};
582581

583582
template <class _Tp, class _VoidPtr>
584-
class _LIBCPP_STANDALONE_DEBUG __tree_node : public __tree_node_base<_VoidPtr> {
583+
class __tree_node : public __tree_node_base<_VoidPtr> {
585584
public:
586585
using __node_value_type _LIBCPP_NODEBUG = __get_node_value_type_t<_Tp>;
587586

0 commit comments

Comments
 (0)