auto merge of #10750 : Blei/rust/no-at-struct-field, r=alexcrichton

This commit is contained in:
bors
2013-12-01 05:42:06 -08:00
13 changed files with 31 additions and 31 deletions

View File

@@ -565,7 +565,7 @@ impl<'self, O: IdVisitingOperation> Visitor<()> for IdVisitor<'self, O> {
}
}
fn visit_struct_field(&mut self, struct_field: @struct_field, env: ()) {
fn visit_struct_field(&mut self, struct_field: &struct_field, env: ()) {
self.operation.visit_id(struct_field.node.id);
visit::walk_struct_field(self, struct_field, env)
}