Get rid of all the remaining uses of refN/valN/mutN/TupleN

This commit is contained in:
Jorge Aparicio 2014-12-13 10:04:55 -05:00
parent 17a9c2764f
commit 029789b98c
3 changed files with 5 additions and 6 deletions

View file

@ -430,8 +430,8 @@ fn with_envp<K, V, T, F>(env: Option<&collections::HashMap<K, V>>, cb: F) -> T w
for pair in env.iter() {
let kv = format!("{}={}",
pair.ref0().container_as_str().unwrap(),
pair.ref1().container_as_str().unwrap());
pair.0.container_as_str().unwrap(),
pair.1.container_as_str().unwrap());
blk.extend(kv.utf16_units());
blk.push(0);
}