Rename option::get_or_default to get_default, for consistency

This commit is contained in:
Tim Chevalier
2012-04-11 09:24:46 -07:00
parent 9280d0c090
commit 1c39fda0ea
5 changed files with 6 additions and 6 deletions

View File

@@ -2017,7 +2017,7 @@ fn monomorphic_fn(ccx: @crate_ctxt, fn_id: ast::def_id, real_substs: [ty::t],
// ctors don't have attrs, at least not right now
let tp_tys: [ty::t] = ty::ty_params_to_tys(ccx.tcx, tps);
trans_class_ctor(ccx, pt, ctor.node.dec, ctor.node.body, lldecl,
option::get_or_default(psubsts,
option::get_default(psubsts,
{tys:tp_tys, vtables: none, bounds: @[]}),
fn_id.node, parent_id, ctor.span);
}