Skip to content

Commit

Permalink
Merge pull request rust-random#18 from aepsil0n/fix-synext
Browse files Browse the repository at this point in the history
Fix syntax extension signature
  • Loading branch information
alexcrichton committed Feb 19, 2015
2 parents 014d450 + 52c30e4 commit 7a81266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rand_macros/src/lib.rs
Expand Up @@ -38,7 +38,7 @@ pub fn expand_deriving_rand(cx: &mut ExtCtxt,
span: Span,
mitem: &MetaItem,
item: &Item,
mut push: Box<FnMut(P<Item>)>) {
push: &mut FnMut(P<Item>)) {
let trait_def = TraitDef {
span: span,
attributes: Vec::new(),
Expand Down

0 comments on commit 7a81266

Please sign in to comment.