std: Iterator.len_ -> .len

This commit is contained in:
Erick Tryzelaar 2013-08-09 20:30:03 -07:00
parent 74d2552b0a
commit f9dee04aaa
5 changed files with 14 additions and 15 deletions

View file

@ -938,7 +938,7 @@ fn disassemble_extract(config: &config, _props: &TestProps,
fn count_extracted_lines(p: &Path) -> uint {
let x = io::read_whole_file_str(&p.with_filetype("ll")).unwrap();
x.line_iter().len_()
x.line_iter().len()
}