Skip to content

Commit b241636

Browse files
terser
1 parent 8b1278e commit b241636

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
@@ -613,7 +613,7 @@ public:
613613
allocator_traits<_Alloc>::construct(__na, std::addressof(__value_), std::forward<_Args>(__args)...);
614614
#else
615615
allocator_traits<_Alloc>::construct(
616-
__na, reinterpret_cast<__node_value_type*>(std::addressof(__buffer_)), std::forward<_Args>(__args)...);
616+
__na, reinterpret_cast<__node_value_type*>(__buffer_), std::forward<_Args>(__args)...);
617617
#endif
618618
}
619619
~__tree_node() = delete;

0 commit comments

Comments
 (0)