Camel case more std types

This commit is contained in:
Brian Anderson
2012-08-29 16:09:41 -07:00
parent aab4d6b8d7
commit ee2ce036cc
4 changed files with 55 additions and 41 deletions

View File

@@ -168,8 +168,8 @@ fn get_dest_addr(dest: dest) -> ValueRef {
}
}
fn log_fn_time(ccx: @crate_ctxt, name: ~str, start: time::timespec,
end: time::timespec) {
fn log_fn_time(ccx: @crate_ctxt, name: ~str, start: time::Timespec,
end: time::Timespec) {
let elapsed = 1000 * ((end.sec - start.sec) as int) +
((end.nsec as int) - (start.nsec as int)) / 1000000;
vec::push(*ccx.stats.fn_times, {ident: name, time: elapsed});