diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-01-12 02:25:51 +0200 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-01-12 02:26:04 +0200 |
| commit | 509fc92a9bb6f9a251308476ebf4e76795df60bf (patch) | |
| tree | 06b6f708400f1c7ce8ece748232263d4af3d3a56 /src/libsyntax/visit.rs | |
| parent | 68ebe8141a9d469ed7a7081e7a4a9ff4c82fbff7 (diff) | |
| download | rust-509fc92a9bb6f9a251308476ebf4e76795df60bf.tar.gz rust-509fc92a9bb6f9a251308476ebf4e76795df60bf.zip | |
Removed remnants of `@mut` and `~mut` from comments and the type system.
Diffstat (limited to 'src/libsyntax/visit.rs')
| -rw-r--r-- | src/libsyntax/visit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/visit.rs b/src/libsyntax/visit.rs index d5fb9efe59b..de5684477da 100644 --- a/src/libsyntax/visit.rs +++ b/src/libsyntax/visit.rs @@ -175,7 +175,7 @@ fn walk_explicit_self<E: Clone, V: Visitor<E>>(visitor: &mut V, explicit_self: &ExplicitSelf, env: E) { match explicit_self.node { - SelfStatic | SelfValue(_) | SelfBox(_) | SelfUniq(_) => {} + SelfStatic | SelfValue(_) | SelfBox | SelfUniq(_) => {} SelfRegion(ref lifetime, _) => { visitor.visit_opt_lifetime_ref(explicit_self.span, lifetime, env) } |
