Skip to content

Commit db54c2c

Browse files
tree
1 parent 47943d9 commit db54c2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,11 +1653,11 @@ template <class _Tp, class _Compare, class _Allocator>
16531653
_LIBCPP_CONSTEXPR_SINCE_CXX26 __tree<_Tp, _Compare, _Allocator>::~__tree() {
16541654
static_assert(is_copy_constructible<value_compare>::value, "Comparator must be copy-constructible.");
16551655
// TODO: get this verified
1656-
// without this check, constexpr evaluation goes into infinite recursion, for
1656+
// without this check, constexpr evaluation goes into infinite recursion, for
16571657
// insert_range.pass.cpp:EmptyContainer_EmptyRange
16581658

16591659
// not sure if this is UB ?, if not, we need to add is_constant_evaluated()
1660-
if(size() > 0) {
1660+
if (size() > 0) {
16611661
destroy(__root());
16621662
}
16631663
}

0 commit comments

Comments
 (0)