diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-10-01 00:59:56 +0300 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-10-02 16:36:01 +0300 |
| commit | d1a57e479c13804e1cda5658f482e840c3a1cd79 (patch) | |
| tree | e23dd7e5885a6b5dc2426228bddb5511c6d31f18 /src/librustdoc | |
| parent | a99e626d07b62cfea5711f018b1497f8bdc04e90 (diff) | |
| download | rust-d1a57e479c13804e1cda5658f482e840c3a1cd79.tar.gz rust-d1a57e479c13804e1cda5658f482e840c3a1cd79.zip | |
syntax: ast: remove TyBox and UnBox.
Diffstat (limited to 'src/librustdoc')
| -rw-r--r-- | src/librustdoc/clean/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustdoc/clean/mod.rs b/src/librustdoc/clean/mod.rs index 0b04536f054..cb5c633bd25 100644 --- a/src/librustdoc/clean/mod.rs +++ b/src/librustdoc/clean/mod.rs @@ -1215,7 +1215,6 @@ impl Clean<Type> for ast::Ty { TyRptr(ref l, ref m) => BorrowedRef {lifetime: l.clean(cx), mutability: m.mutbl.clean(cx), type_: box m.ty.clean(cx)}, - TyBox(ref ty) => Managed(box ty.clean(cx)), TyUniq(ref ty) => Unique(box ty.clean(cx)), TyVec(ref ty) => Vector(box ty.clean(cx)), TyFixedLengthVec(ref ty, ref e) => FixedVector(box ty.clean(cx), |
