We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e7775c commit daaa231Copy full SHA for daaa231
src/libstd/sys/redox/path.rs
@@ -24,7 +24,8 @@ pub fn is_verbatim_sep(b: u8) -> bool {
24
pub fn parse_prefix(path: &OsStr) -> Option<Prefix> {
25
if let Some(path_str) = path.to_str() {
26
if let Some(_i) = path_str.find(':') {
27
- //TODO: Redox specific prefix Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
+ // FIXME: Redox specific prefix
28
+ // Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
29
None
30
} else {
31
0 commit comments