@@ -36,7 +36,7 @@ pub fn expand_deriving_ord<F>(cx: &mut ExtCtxt,
36
36
generics: LifetimeBounds :: empty( ) ,
37
37
explicit_self: borrowed_explicit_self( ) ,
38
38
args: vec!( borrowed_self( ) ) ,
39
- ret_ty: Literal ( Path :: new ( vec! ( " bool" ) ) ) ,
39
+ ret_ty: Literal ( path! ( bool ) ) ,
40
40
attributes: attrs,
41
41
combine_substructure: combine_substructure( box |cx, span, substr| {
42
42
cs_op( $op, $equal, cx, span, substr)
@@ -45,8 +45,8 @@ pub fn expand_deriving_ord<F>(cx: &mut ExtCtxt,
45
45
} }
46
46
}
47
47
48
- let ordering_ty = Literal ( Path :: new ( vec ! [ " std" , " cmp" , " Ordering" ] ) ) ;
49
- let ret_ty = Literal ( Path :: new_ ( vec ! [ " std" , " option" , " Option" ] ,
48
+ let ordering_ty = Literal ( path ! ( std:: cmp:: Ordering ) ) ;
49
+ let ret_ty = Literal ( Path :: new_ ( pathvec ! ( std:: option:: Option ) ,
50
50
None ,
51
51
vec ! [ box ordering_ty] ,
52
52
true ) ) ;
@@ -69,7 +69,7 @@ pub fn expand_deriving_ord<F>(cx: &mut ExtCtxt,
69
69
let trait_def = TraitDef {
70
70
span : span,
71
71
attributes : vec ! [ ] ,
72
- path : Path :: new ( vec ! [ " std" , " cmp" , " PartialOrd" ] ) ,
72
+ path : path ! ( std:: cmp:: PartialOrd ) ,
73
73
additional_bounds : vec ! [ ] ,
74
74
generics : LifetimeBounds :: empty ( ) ,
75
75
methods : vec ! [
0 commit comments