1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-27 15:42:57 +01:00

fix noisy check warning

This commit is contained in:
Rob Ede 2020-04-04 23:57:52 +01:00
parent 30aa0b7bb6
commit 187a58472d
No known key found for this signature in database
GPG Key ID: C2A3B36E841A91E6

View File

@ -31,7 +31,7 @@ fn set_bit(array: &mut [u8], ch: u8) {
}
thread_local! {
static DEFAULT_QUOTER: Quoter = { Quoter::new(b"@:", b"/+") };
static DEFAULT_QUOTER: Quoter = Quoter::new(b"@:", b"/+");
}
#[derive(Default, Clone, Debug)]