refactor(lib): replace Vec::set_len(0) with clear

This commit is contained in:
Laurentiu Nicola
2018-08-02 19:33:22 +03:00
committed by Sean McArthur
parent 069a32b1ac
commit c837fb9c29
3 changed files with 4 additions and 11 deletions

View File

@@ -179,7 +179,7 @@ mod tests {
let chunk = ::Chunk::from(s);
dst.put(chunk);
::test::black_box(&dst);
unsafe { dst.set_len(0); }
dst.clear();
})
}
}