File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -195,10 +195,6 @@ matrix:
195
195
keep-history : false
196
196
if : branch = master
197
197
198
- before_install :
199
- # FIXME (travis-ci/travis-ci#8920) shouldn't be necessary...
200
- - python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
201
-
202
198
notifications :
203
199
email :
204
200
on_success : never
Original file line number Diff line number Diff line change @@ -1061,15 +1061,15 @@ impl ToTokens for ast::Const {
1061
1061
// again no suffix
1062
1062
// panics on +-inf, nan
1063
1063
FloatLiteral ( f) => {
1064
- let f = Literal :: f64_unsuffixed ( f) ;
1064
+ let f = Literal :: f64_suffixed ( f) ;
1065
1065
quote ! ( #f)
1066
1066
} ,
1067
1067
SignedIntegerLiteral ( i) => {
1068
- let i = Literal :: i64_unsuffixed ( i) ;
1068
+ let i = Literal :: i64_suffixed ( i) ;
1069
1069
quote ! ( #i)
1070
1070
} ,
1071
1071
UnsignedIntegerLiteral ( i) => {
1072
- let i = Literal :: u64_unsuffixed ( i) ;
1072
+ let i = Literal :: u64_suffixed ( i) ;
1073
1073
quote ! ( #i)
1074
1074
} ,
1075
1075
Null => unimplemented ! ( ) ,
You can’t perform that action at this time.
0 commit comments