diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2014-11-04 16:25:15 -0500 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2014-11-06 06:48:24 -0500 |
| commit | d0fa4c6239accc08aae11d9db3e13d4153add432 (patch) | |
| tree | 6acb078eaf06ad01af0b2849cba93131f82411ee /src/libsyntax/ast_map | |
| parent | 221edbae3843848047825701e25b6f9d8b096075 (diff) | |
| download | rust-d0fa4c6239accc08aae11d9db3e13d4153add432.tar.gz rust-d0fa4c6239accc08aae11d9db3e13d4153add432.zip | |
Remove the unboxed closure `|:|` notation from types and trait references completely.
Diffstat (limited to 'src/libsyntax/ast_map')
| -rw-r--r-- | src/libsyntax/ast_map/mod.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/ast_map/mod.rs b/src/libsyntax/ast_map/mod.rs index f049b964ff3..3adb062864e 100644 --- a/src/libsyntax/ast_map/mod.rs +++ b/src/libsyntax/ast_map/mod.rs @@ -848,9 +848,6 @@ impl<'ast> Visitor<'ast> for NodeCollector<'ast> { TyBareFn(ref fd) => { self.visit_fn_decl(&*fd.decl); } - TyUnboxedFn(ref fd) => { - self.visit_fn_decl(&*fd.decl); - } _ => {} } visit::walk_ty(self, ty); |
