aboutsummaryrefslogtreecommitdiffstats
path: root/components/plugins/jstraceable.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-03-06 02:37:48 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2016-03-06 10:36:49 +0100
commit7c1dd54895032ece871d6ec727fbd643b8214331 (patch)
treef59cff6ef1c934e874f4109d9524b9602e30b3f2 /components/plugins/jstraceable.rs
parent64fb09ca2d5d077b4d3e0815ee3e094f67b7cf4e (diff)
downloadservo-7c1dd54895032ece871d6ec727fbd643b8214331.tar.gz
servo-7c1dd54895032ece871d6ec727fbd643b8214331.zip
Update to Rust 2016-03-05
Diffstat (limited to 'components/plugins/jstraceable.rs')
-rw-r--r--components/plugins/jstraceable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/plugins/jstraceable.rs b/components/plugins/jstraceable.rs
index b2b9746740c..6b031b52c2c 100644
--- a/components/plugins/jstraceable.rs
+++ b/components/plugins/jstraceable.rs
@@ -77,7 +77,7 @@ fn jstraceable_substructure(cx: &mut ExtCtxt, trait_span: Span, substr: &Substru
let mut stmts = Vec::new();
let fields = match *substr.fields {
- Struct(ref fs) | EnumMatching(_, _, ref fs) => fs,
+ Struct(_, ref fs) | EnumMatching(_, _, ref fs) => fs,
_ => cx.span_bug(trait_span, "impossible substructure in `jstraceable`")
};