Skip to content

Commit ac49f52

Browse files
Avoid lint on nightly
1 parent b5768e3 commit ac49f52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

measureme/src/stringtable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ impl<'s> StringComponent<'s> {
186186
assert!(STRING_REF_ENCODED_SIZE == 5);
187187

188188
bytes[0] = STRING_REF_TAG;
189-
&mut bytes[1..5].copy_from_slice(&string_id.0.to_le_bytes());
189+
bytes[1..5].copy_from_slice(&string_id.0.to_le_bytes());
190190
&mut bytes[5..]
191191
}
192192
}

0 commit comments

Comments
 (0)