Skip to content

Commit d1dfb7f

Browse files
Fix order of annotations
1 parent b083bea commit d1dfb7f

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
@@ -264,7 +264,7 @@ _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __tree_left_rotate(_Nod
264264
// Effects: Makes __x->__left_ the subtree root with __x as its right child
265265
// while preserving in-order order.
266266
template <class _NodePtr>
267-
_LIBCPP_CONSTEXPR_SINCE_CXX26 _LIBCPP_HIDE_FROM_ABI void __tree_right_rotate(_NodePtr __x) _NOEXCEPT {
267+
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __tree_right_rotate(_NodePtr __x) _NOEXCEPT {
268268
_LIBCPP_ASSERT_INTERNAL(__x != nullptr, "node shouldn't be null");
269269
_LIBCPP_ASSERT_INTERNAL(__x->__left_ != nullptr, "node should have a left child");
270270
_NodePtr __y = __x->__left_;

0 commit comments

Comments
 (0)