diff options
Diffstat (limited to 'components/plugins/reflector.rs')
-rw-r--r-- | components/plugins/reflector.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/plugins/reflector.rs b/components/plugins/reflector.rs index 4b0681c4d39..43f2f625df4 100644 --- a/components/plugins/reflector.rs +++ b/components/plugins/reflector.rs @@ -10,7 +10,7 @@ use syntax::ast; use utils::match_ty_unwrap; -pub fn expand_reflector(cx: &mut ExtCtxt, span: Span, _: &MetaItem, item: &Item, push: |P<Item>|) { +pub fn expand_reflector(cx: &mut ExtCtxt, span: Span, _: &MetaItem, item: &Item, mut push: Box<FnMut(P<Item>) -> ()>) { if let ast::ItemStruct(ref def, _) = item.node { let struct_name = item.ident; // This path has to be hardcoded, unfortunately, since we can't resolve paths at expansion time |