Avoid a string allocation.

This commit is contained in:
Ms2ger 2015-11-19 12:37:13 +01:00
parent 3ccef0fdc5
commit 83b636930d
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ pub fn unsize_thin_ptr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
(PointerCast(bcx, src, ptr_ty),
unsized_info(bcx.ccx(), a, b, None, bcx.fcx.param_substs))
}
_ => bcx.sess().bug(&format!("unsize_thin_ptr: called on bad types")),
_ => bcx.sess().bug("unsize_thin_ptr: called on bad types"),
}
}