Remove more unreachable pubs

This commit is contained in:
Aleksey Kladov 2020-11-02 16:31:38 +01:00
parent 731b38fa3c
commit ba8d6d1e4e
39 changed files with 114 additions and 121 deletions

View file

@ -120,7 +120,7 @@ impl VfsPath {
#[cfg(windows)]
mod windows_paths {
pub trait Encode {
pub(crate) trait Encode {
fn encode(&self, buf: &mut Vec<u8>);
}
@ -149,7 +149,7 @@ mod windows_paths {
}
}
pub const SEP: &str = "\\";
pub(crate) const SEP: &str = "\\";
const VERBATIM: &str = "\\\\?\\";
const UNC: &str = "UNC";
const DEVICE: &str = "\\\\.\\";