From 100ca337421f57c4db57d5e3270c0ce1dbe86765 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 3 Mar 2016 01:24:20 +0530 Subject: [PATCH 1/2] Rust upgrade to 2016-03-02 nightly --- src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 27c67e78e03a..cf90155b1fa1 100644 --- a/src/types.rs +++ b/src/types.rs @@ -432,7 +432,7 @@ impl LateLintPass for TypeComplexityPass { fn check_struct_field(&mut self, cx: &LateContext, field: &StructField) { // enum variants are also struct fields now - check_type(cx, &field.node.ty); + check_type(cx, &field.ty); } fn check_item(&mut self, cx: &LateContext, item: &Item) { From 414396ab6583fe45995651f29e1effce5d508bb0 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 3 Mar 2016 01:24:51 +0530 Subject: [PATCH 2/2] Bump to 0.0.45 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d4134461685f..71d6d2864f2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.44" +version = "0.0.45" authors = [ "Manish Goregaokar ", "Andre Bogus ",