Use byte literals in libstd

This commit is contained in:
nham
2014-08-06 02:02:50 -04:00
parent dfdea3f116
commit 3fb78e29f4
13 changed files with 52 additions and 54 deletions

View File

@@ -114,7 +114,7 @@ impl DynamicLibrary {
}
fn separator() -> u8 {
if cfg!(windows) {';' as u8} else {':' as u8}
if cfg!(windows) {b';'} else {b':'}
}
/// Returns the current search path for dynamic libraries being used by this