diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-18 18:06:10 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-19 08:24:42 +0530 |
| commit | d943d9b801e7621c08aab912b5ade24a80865191 (patch) | |
| tree | 76c2e681e2d376ee905c6a295ec73c642f8244ff /src/libsyntax | |
| parent | 12cb7c6a2847959460ecac75b2c983d071585472 (diff) | |
| download | rust-d943d9b801e7621c08aab912b5ade24a80865191.tar.gz rust-d943d9b801e7621c08aab912b5ade24a80865191.zip | |
Address huon's comments
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 5c275715352..936fbd62786 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -215,8 +215,8 @@ pub struct Lifetime { pub name: Name } -#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] /// A lifetime definition, eg `'a: 'b+'c+'d` +#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] pub struct LifetimeDef { pub lifetime: Lifetime, pub bounds: Vec<Lifetime> |
