1
Fork 0

libstd: Remove ~str from all libstd modules except fmt and str.

This commit is contained in:
Patrick Walton 2014-05-16 10:45:16 -07:00
parent e402e75f4e
commit 36195eb91f
204 changed files with 2102 additions and 1496 deletions

View file

@ -132,7 +132,7 @@ pub fn opts() -> Vec<getopts::OptGroup> {
pub fn usage(argv0: &str) {
println!("{}",
getopts::usage(format!("{} [options] <input>", argv0),
getopts::usage(format!("{} [options] <input>", argv0).as_slice(),
opts().as_slice()));
}