More deprecating of i/u suffixes in libraries

This commit is contained in:
Alfie John 2015-01-25 10:58:43 +00:00
parent fe4340ab18
commit 00a933f9ec
40 changed files with 201 additions and 201 deletions

View file

@ -260,7 +260,7 @@ fn split_msg_into_multilines(msg: &str) -> Option<String> {
}).map(|(a, b)| (a - 1, b));
let mut new_msg = String::new();
let mut head = 0u;
let mut head = 0;
// Insert `\n` before expected and found.
for (pos1, pos2) in first.zip(second) {