Skip to content

Commit

Permalink
update dependencies and fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxx committed Nov 23, 2015
1 parent 40eb3ea commit 411fa40
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/visitor.rs
Expand Up @@ -340,20 +340,20 @@ impl<'a> FmtVisitor<'a> {
}

match ii.node {
ast::MethodImplItem(ref sig, ref body) => {
ast::ImplItemKind::Method(ref sig, ref body) => {
self.visit_fn(visit::FnKind::Method(ii.ident, sig, Some(ii.vis)),
&sig.decl,
body,
ii.span,
ii.id);
}
ast::ConstImplItem(..) => {
ast::ImplItemKind::Const(..) => {
// FIXME: Implement
}
ast::TypeImplItem(_) => {
ast::ImplItemKind::Type(_) => {
// FIXME: Implement
}
ast::MacImplItem(ref mac) => {
ast::ImplItemKind::Macro(ref mac) => {
self.visit_mac(mac);
}
}
Expand Down

0 comments on commit 411fa40

Please sign in to comment.