Skip to content

Commit e68db3a

Browse files
author
Elliott Slaughter
committed
rustc: Fix for updated macro syntax.
1 parent a7a74c7 commit e68db3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rustc/middle/trans/type_of.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ fn type_of_dtor(ccx: @crate_ctxt, self_ty: ty::t) -> TypeRef {
248248

249249
fn type_of_rooted(ccx: @crate_ctxt, t: ty::t) -> TypeRef {
250250
let addrspace = base::get_tydesc(ccx, t).addrspace;
251-
debug!{"type_of_rooted %s in addrspace %u",
252-
ty_to_str(ccx.tcx, t), addrspace as uint};
251+
debug!("type_of_rooted %s in addrspace %u",
252+
ty_to_str(ccx.tcx, t), addrspace as uint);
253253
return T_root(type_of(ccx, t), addrspace);
254254
}
255255

0 commit comments

Comments
 (0)