Skip to content

Commit

Permalink
Merge pull request #125 from actix/fix/noisy-check
Browse files Browse the repository at this point in the history
fix noisy check warning
  • Loading branch information
JohnTitor authored Apr 5, 2020
2 parents 30aa0b7 + 187a584 commit 9addf1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion router/src/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 9addf1a

Please sign in to comment.