rustc: Fix for updated macro syntax.

This commit is contained in:
Elliott Slaughter 2012-08-24 10:57:36 -07:00
parent a7a74c79fa
commit e68db3ad3c

View file

@ -248,8 +248,8 @@ fn type_of_dtor(ccx: @crate_ctxt, self_ty: ty::t) -> TypeRef {
fn type_of_rooted(ccx: @crate_ctxt, t: ty::t) -> TypeRef {
let addrspace = base::get_tydesc(ccx, t).addrspace;
debug!{"type_of_rooted %s in addrspace %u",
ty_to_str(ccx.tcx, t), addrspace as uint};
debug!("type_of_rooted %s in addrspace %u",
ty_to_str(ccx.tcx, t), addrspace as uint);
return T_root(type_of(ccx, t), addrspace);
}