Fix final clippy warnings

This commit is contained in:
2020-12-27 23:06:50 +01:00
parent e9870a1f18
commit e88ef7b410
3 changed files with 6 additions and 4 deletions

View File

@@ -93,6 +93,8 @@ where
T: Read,
{
reader: BufReader<T>,
// Clippy doesn't understand the use case of an Rc which is immediately released
#[allow(clippy::rc_buffer)]
buffer: Rc<String>,
}