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 b083bea commit d1dfb7fCopy full SHA for d1dfb7f
libcxx/include/__tree
@@ -264,7 +264,7 @@ _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __tree_left_rotate(_Nod
264
// Effects: Makes __x->__left_ the subtree root with __x as its right child
265
// while preserving in-order order.
266
template <class _NodePtr>
267
-_LIBCPP_CONSTEXPR_SINCE_CXX26 _LIBCPP_HIDE_FROM_ABI void __tree_right_rotate(_NodePtr __x) _NOEXCEPT {
+_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __tree_right_rotate(_NodePtr __x) _NOEXCEPT {
268
_LIBCPP_ASSERT_INTERNAL(__x != nullptr, "node shouldn't be null");
269
_LIBCPP_ASSERT_INTERNAL(__x->__left_ != nullptr, "node should have a left child");
270
_NodePtr __y = __x->__left_;
0 commit comments