diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-28 11:11:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-28 11:11:08 +0200 |
| commit | b405aa2d0301c5fc448299501278ae2db4e15e50 (patch) | |
| tree | 25f749e1f7d4c446983d7e3dd9b16eb0bf4b8dab /src/libcore/alloc.rs | |
| parent | 2826bdcfa6fecc656294534162fb5990d3d53cf5 (diff) | |
| parent | 124f6ef7cdea1083b0cbe0371e3f7fbe1152a9d1 (diff) | |
| download | rust-b405aa2d0301c5fc448299501278ae2db4e15e50.tar.gz rust-b405aa2d0301c5fc448299501278ae2db4e15e50.zip | |
Rollup merge of #62806 - mati865:clippy, r=TimNN
Fix few Clippy warnings
Diffstat (limited to 'src/libcore/alloc.rs')
| -rw-r--r-- | src/libcore/alloc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/alloc.rs b/src/libcore/alloc.rs index 487f3b76fc7..5d0333d5226 100644 --- a/src/libcore/alloc.rs +++ b/src/libcore/alloc.rs @@ -827,11 +827,11 @@ pub unsafe trait Alloc { let old_size = layout.size(); if new_size >= old_size { - if let Ok(()) = self.grow_in_place(ptr, layout.clone(), new_size) { + if let Ok(()) = self.grow_in_place(ptr, layout, new_size) { return Ok(ptr); } } else if new_size < old_size { - if let Ok(()) = self.shrink_in_place(ptr, layout.clone(), new_size) { + if let Ok(()) = self.shrink_in_place(ptr, layout, new_size) { return Ok(ptr); } } |
