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 fc6664c commit 33d5d2eCopy full SHA for 33d5d2e
src/lib.rs
@@ -81,9 +81,7 @@ impl<A: Array> Drop for ArrayVec<A> {
81
fn drop(&mut self) {
82
self.clear();
83
84
- // NoDrop inhibits array's drop
85
- // panic safety: NoDrop::drop will trigger on panic, so the inner
86
- // array will not drop even after panic.
+ // MaybeUninit inhibits array's drop
87
}
88
89
0 commit comments