Skip to content

Commit a69a38d

Browse files
committed
Changes to version 1.29.1 (b801ae664 2018-09-20)
The use of literal pattern matching on floating points has been deprecated. It currently produces a warning, but will eventually cause a compilation error. See: rust-lang/rust#41620
1 parent 783f8e7 commit a69a38d

3 files changed

+9
-13
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: rust
2-
rust: 1.13.0
2+
rust: 1.29.1
33
env:
44
global:
55
- secure: YuWDOwPGprL6PiBZVeGaLOCHHgC18fQ6nq617tlt7XFCkG17r/xDWq3iiAyNxNUcwsD9CkWi5aXok8SlX3rQx84XC/sya2bi0+8Frt9EztcVxgMwWuX3Ll4mFHO7HnMhazoQYRPd0b0w4s7bFY2WidxCqjsMKRgAM26Gn+6oQto=

tutorial-04_2-pattern-matching.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,9 @@ struct Point { x: f64, y: f64 }
1313

1414
fn angle(vector: (f64, f64)) -> f64 {
1515
let pi = f64::consts::PI;
16-
/*
17-
* A powerful application of pattern matching is destructuring:
18-
* matching in order to bind names to the contents of data types.
19-
*/
2016
match vector {
21-
(0.0, y) if y < 0.0 => 1.5 * pi,
22-
(0.0, _) => 0.5 * pi,
17+
(x, y) if x == 0.0 && y < 0.0 => 1.5 * pi,
18+
(x, _) if x == 0.0 => 0.5 * pi,
2319
(x, y) => (y / x).atan()
2420
}
2521
}

tutorial-05_1-structs.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010
*/
1111
#[derive(Debug)]
1212
struct Point {
13-
x: f64,
14-
y: f64
13+
x: i32,
14+
y: i32
1515
}
1616
fn main() {
17-
let mut mypoint = Point { x: 1.0, y: 1.0 };
18-
let origin = Point { x: 0.0, y: 0.0 };
17+
let mut mypoint = Point { x: 1, y: 1 };
18+
let origin = Point { x: 0, y: 0 };
1919

2020
println!("origin = {:?}", origin);
2121

22-
mypoint.y += 1.0; // mypoint is mutable, and its fields as well
22+
mypoint.y += 1; // mypoint is mutable, and its fields as well
2323
//origin.y += 1.0; // ERROR: assigning to immutable field
2424

2525
// `match` patterns destructure structs.
2626
match mypoint {
27-
Point { x: 0.0, y: yy } => println!("{}", yy),
27+
Point { x: 0, y: yy } => println!("{}", yy),
2828
Point { x: xx, y: yy } => println!("{} {}", xx, yy),
2929
}
3030

0 commit comments

Comments
 (0)