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/fold.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/fold.rs')
| -rw-r--r-- | src/libsyntax/fold.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/fold.rs b/src/libsyntax/fold.rs index 409368ce3df..15893e4c7e7 100644 --- a/src/libsyntax/fold.rs +++ b/src/libsyntax/fold.rs @@ -319,7 +319,7 @@ pub trait Folder { fn fold_explicit_self_(&mut self, es: &ExplicitSelf_) -> ExplicitSelf_ { match *es { - SelfStatic | SelfValue(_) | SelfUniq(_) | SelfBox(_) => { + SelfStatic | SelfValue(_) | SelfUniq(_) | SelfBox => { *es } SelfRegion(ref lifetime, m) => { |
