librustc: Remove is_self_field from borrowck. Unused. rs=#rust

This commit is contained in:
Patrick Walton 2012-12-10 10:50:11 -08:00
parent 9723d3ac2f
commit ac2b0456f4

View File

@ -328,18 +328,6 @@ impl check_loan_ctxt {
}
}
fn is_self_field(cmt: cmt) -> bool {
match cmt.cat {
cat_comp(cmt_base, comp_field(*)) => {
match cmt_base.cat {
cat_special(sk_self) => true,
_ => false
}
}
_ => false
}
}
fn check_assignment(at: assignment_type, ex: @ast::expr) {
// We don't use cat_expr() here because we don't want to treat
// auto-ref'd parameters in overloaded operators as rvalues.