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 8b1278e commit b241636Copy full SHA for b241636
libcxx/include/__tree
@@ -613,7 +613,7 @@ public:
613
allocator_traits<_Alloc>::construct(__na, std::addressof(__value_), std::forward<_Args>(__args)...);
614
#else
615
allocator_traits<_Alloc>::construct(
616
- __na, reinterpret_cast<__node_value_type*>(std::addressof(__buffer_)), std::forward<_Args>(__args)...);
+ __na, reinterpret_cast<__node_value_type*>(__buffer_), std::forward<_Args>(__args)...);
617
#endif
618
}
619
~__tree_node() = delete;
0 commit comments