Skip to content

Commit 77f5da7

Browse files
committed
Add comment.
1 parent 6beb4ba commit 77f5da7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libcollections/vec.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1323,6 +1323,8 @@ impl<T> Drop for Vec<T> {
13231323
// don't need unsafe_no_drop_flag shenanigans anymore.
13241324
if self.buf.unsafe_no_drop_flag_needs_drop() {
13251325
unsafe {
1326+
// The branch on needs_drop() is an -O1 performance optimization.
1327+
// Without the branch, dropping Vec<u8> takes linear time.
13261328
if needs_drop::<T>() {
13271329
for x in self.iter_mut() {
13281330
drop_in_place(x);

0 commit comments

Comments
 (0)