Skip to content

Commit fa5d9d2

Browse files
Remove hide abi
1 parent 32a7276 commit fa5d9d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 bool __tree_is_left_c
119119
// __x is a proper subtree, returns the black height (null counts as 1). If
120120
// __x is an improper subtree, returns 0.
121121
template <class _NodePtr>
122-
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 unsigned __tree_sub_invariant(_NodePtr __x) {
122+
_LIBCPP_CONSTEXPR_SINCE_CXX26 unsigned __tree_sub_invariant(_NodePtr __x) {
123123
if (__x == nullptr)
124124
return 1;
125125
// parent consistency checked by caller

0 commit comments

Comments
 (0)