1
Fork 0

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
commit bdda6a2d3e
2 changed files with 2 additions and 2 deletions

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>",

View file

@ -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) {