diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-07-17 16:41:38 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2021-07-17 16:41:38 -0400 |
commit | 8d5dd66ed36e19e6edf3415b41f6691e3c86175c (patch) | |
tree | 3937cf98f8416e05adfccd3fa92945594f7b651d | |
parent | 1522befabbc36735649be6ff98f74292706ce014 (diff) | |
download | servo-8d5dd66ed36e19e6edf3415b41f6691e3c86175c.tar.gz servo-8d5dd66ed36e19e6edf3415b41f6691e3c86175c.zip |
Update to 7/17 nightly.
-rw-r--r-- | components/script_plugins/lib.rs | 5 | ||||
-rw-r--r-- | rust-toolchain | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index c1dc92abb09..128bec6b6c7 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -405,10 +405,7 @@ fn match_def_path(cx: &LateContext, def_id: DefId, path: &[Symbol]) -> bool { fn in_derive_expn(span: Span) -> bool { matches!( span.ctxt().outer_expn_data().kind, - ExpnKind::Macro { - kind: MacroKind::Derive, - .. - } + ExpnKind::Macro(MacroKind::Derive, ..) ) } diff --git a/rust-toolchain b/rust-toolchain index b2eff28fe03..659c2bb8306 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -nightly-2021-05-18 +nightly-2021-07-17 |