Skip to content

Commit

Permalink
auto merge of #17142 : sfackler/rust/issue-17115, r=alexcrichton
Browse files Browse the repository at this point in the history
Closes #17115
  • Loading branch information
bors committed Sep 11, 2014
2 parents 09abbbd + b865c1f commit 7ea660e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/librustc/front/show_span.rs
Expand Up @@ -28,6 +28,10 @@ impl<'a> Visitor<()> for ShowSpanVisitor<'a> {
self.sess.span_note(e.span, "expression");
visit::walk_expr(self, e, ());
}

fn visit_mac(&mut self, macro: &ast::Mac, e: ()) {
visit::walk_mac(self, macro, e);
}
}

pub fn run(sess: &Session, krate: &ast::Crate) {
Expand Down

0 comments on commit 7ea660e

Please sign in to comment.