]> git.lizzy.rs Git - rust.git/commitdiff
Address huon's comments
authorManish Goregaokar <manishsmail@gmail.com>
Wed, 18 Mar 2015 12:36:10 +0000 (18:06 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Thu, 19 Mar 2015 02:54:42 +0000 (08:24 +0530)
src/libsyntax/ast.rs

index 5c2757153521c3f024c9412fc8dd677e24f1d471..936fbd627862f3e8229c1b2373f38a3b1e8712aa 100644 (file)
@@ -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>