We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a7276 commit fa5d9d2Copy full SHA for fa5d9d2
libcxx/include/__tree
@@ -119,7 +119,7 @@ inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 bool __tree_is_left_c
119
// __x is a proper subtree, returns the black height (null counts as 1). If
120
// __x is an improper subtree, returns 0.
121
template <class _NodePtr>
122
-_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 unsigned __tree_sub_invariant(_NodePtr __x) {
+_LIBCPP_CONSTEXPR_SINCE_CXX26 unsigned __tree_sub_invariant(_NodePtr __x) {
123
if (__x == nullptr)
124
return 1;
125
// parent consistency checked by caller
0 commit comments