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 165f366 commit ca2fa97Copy full SHA for ca2fa97
src/libcore/mem.rs
@@ -468,8 +468,7 @@ pub fn swap<T>(x: &mut T, y: &mut T) {
468
let mut i = 0;
469
while i + block_size as isize <= len {
470
// Create some uninitialized memory as scratch space
471
- // Moving the declaration of `t` here avoids aligning the stack when
472
- // this loop is unused
+ // Decaring `t` here avoids aligning the stack when this loop is unused
473
let mut t: Block = uninitialized();
474
let t = &mut t as *mut _ as *mut u8;
475
0 commit comments