1
Fork 0

Mass rename of .consume{,_iter}() to .move_iter()

cc #7887
This commit is contained in:
Erick Tryzelaar 2013-08-07 19:21:36 -07:00
parent f0fc9c92ff
commit fad7857c7b
41 changed files with 129 additions and 129 deletions

View file

@ -176,7 +176,7 @@ pub fn fold_ty_param(tp: TyParam,
pub fn fold_ty_params(tps: &OptVec<TyParam>,
fld: @ast_fold) -> OptVec<TyParam> {
let tps = /*bad*/ (*tps).clone();
tps.map_consume(|tp| fold_ty_param(tp, fld))
tps.map_move(|tp| fold_ty_param(tp, fld))
}
pub fn fold_lifetime(l: &Lifetime,