Skip to content

Commit 4e905fe

Browse files
remove the & from buffer
1 parent c1a776e commit 4e905fe

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
@@ -603,7 +603,7 @@ private:
603603

604604
public:
605605
_LIBCPP_HIDE_FROM_ABI __node_value_type& __get_value() {
606-
return *reinterpret_cast<__node_value_type*>(&__buffer_);
606+
return *reinterpret_cast<__node_value_type*>(__buffer_);
607607
}
608608
#endif
609609

0 commit comments

Comments
 (0)