Merge pull request #733 from Manishearth/rustup

Rust upgrade to 2016-03-02
This commit is contained in:
Martin Carton
2016-03-03 13:36:18 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.44"
version = "0.0.45"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
+1 -1
View File
@@ -432,7 +432,7 @@ fn check_fn(&mut self, cx: &LateContext, _: FnKind, decl: &FnDecl, _: &Block, _:
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) {