Fix used_underscore_binding in rustc_serialize

This commit is contained in:
Michal Piotrowski 2024-10-07 15:02:45 +02:00
parent 690332a251
commit 4085b48dfd
No known key found for this signature in database
GPG Key ID: 2538DC6C8E7C7859

View File

@ -437,10 +437,10 @@ impl IntEncodedWithFixedSize {
impl Encodable<FileEncoder> for IntEncodedWithFixedSize {
#[inline]
fn encode(&self, e: &mut FileEncoder) {
let _start_pos = e.position();
let start_pos = e.position();
e.write_array(self.0.to_le_bytes());
let _end_pos = e.position();
debug_assert_eq!((_end_pos - _start_pos), IntEncodedWithFixedSize::ENCODED_SIZE);
let end_pos = e.position();
debug_assert_eq!((end_pos - start_pos), IntEncodedWithFixedSize::ENCODED_SIZE);
}
}