Skip to content

Commit 4fbb472

Browse files
PR review comment
1 parent 03a6a4a commit 4fbb472

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
@@ -1890,7 +1890,7 @@ __tree<_Tp, _Compare, _Allocator>::__construct_node(_Args&&... __args) {
18901890
} else
18911891
#endif
18921892
{
1893-
__node_traits::construct(__na, std::addressof(__h->__value_), std::forward<_Args>(__args)...);
1893+
std::__construct_at(std::addressof(__h->__value_), std::forward<_Args>(__args)...);
18941894
}
18951895
#if _LIBCPP_STD_VER >= 26
18961896

0 commit comments

Comments
 (0)