diff options
| author | bors <bors@rust-lang.org> | 2019-01-19 10:46:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-01-19 10:46:32 +0000 |
| commit | e99a4d8d9e6c6e3294706486299f84667bf9133c (patch) | |
| tree | 567e9e7536b9a8ef6fe914aed577392a28662cc4 | |
| parent | 235f96005cb3c94f4f3d185e7c3d4ffaa08685aa (diff) | |
| parent | de9c09e2bd8047c204acb6786d7f6c0d79911bc3 (diff) | |
| download | rust-e99a4d8d9e6c6e3294706486299f84667bf9133c.tar.gz rust-e99a4d8d9e6c6e3294706486299f84667bf9133c.zip | |
Auto merge of #3671 - matthiaskrgr:rustup, r=oli-obk
rustup https://github.com/rust-lang/rust/pull/57747
| -rw-r--r-- | clippy_lints/src/open_options.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/open_options.rs b/clippy_lints/src/open_options.rs index e21225fbd29..fe572d86c1b 100644 --- a/clippy_lints/src/open_options.rs +++ b/clippy_lints/src/open_options.rs @@ -72,7 +72,7 @@ fn get_open_options(cx: &LateContext<'_, '_>, argument: &Expr, options: &mut Vec if let Spanned { node: LitKind::Bool(lit), .. - } = **span + } = *span { if lit { Argument::True |
