Rollup merge of #56497 - ljedrz:cleanup_libstd_const_lifetimes, r=kennytm

cleanup: remove static lifetimes from consts in libstd
This commit is contained in:
Pietro Albini
2018-12-05 23:54:36 +01:00
committed by GitHub
16 changed files with 173 additions and 173 deletions

View File

@@ -99,5 +99,5 @@ pub fn parse_prefix<'a>(path: &'a OsStr) -> Option<Prefix> {
}
}
pub const MAIN_SEP_STR: &'static str = "\\";
pub const MAIN_SEP_STR: &str = "\\";
pub const MAIN_SEP: char = '\\';