File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: f0706d8932fc78c5b72db08733122fffbe1c4a81
2
+ refs/heads/master: 86f1ace55b6507671f51e52557db5caef7ad4393
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ impure fn parse_sty(@pstate st, str_def sd) -> ty.sty {
75
75
case ( 'b' ) { ret ty. ty_bool ; }
76
76
case ( 'i' ) { ret ty. ty_int ; }
77
77
case ( 'u' ) { ret ty. ty_uint ; }
78
+ case ( 'l' ) { ret ty. ty_float ; }
78
79
case ( 'M' ) {
79
80
alt ( next ( st) as char ) {
80
81
case ( 'b' ) { ret ty. ty_machine ( common. ty_u8 ) ; }
@@ -104,7 +105,7 @@ impure fn parse_sty(@pstate st, str_def sd) -> ty.sty {
104
105
}
105
106
st. pos = st. pos + 1 u;
106
107
ret ty. ty_tag ( sd ( def) , params) ;
107
- }
108
+ }
108
109
case ( '@' ) { ret ty. ty_box ( parse_mt ( st, sd) ) ; }
109
110
case ( 'V' ) { ret ty. ty_vec ( parse_mt ( st, sd) ) ; }
110
111
case ( 'P' ) { ret ty. ty_port ( parse_ty ( st, sd) ) ; }
You can’t perform that action at this time.
0 commit comments