about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-11 22:11:37 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-08-11 22:42:20 -0700
commit2abc93606fdb39835e82cefc53e0d75043d79fd3 (patch)
tree91a874697a1faa83ae8fd661efc9db1572ec6f63 /src/libstd
parent175783722806b445eb262a1b90a7d471dd50c3e0 (diff)
parent0354d7a800b4e1d9fe2ca024c1d4c05252601b23 (diff)
downloadrust-2abc93606fdb39835e82cefc53e0d75043d79fd3.tar.gz
rust-2abc93606fdb39835e82cefc53e0d75043d79fd3.zip
rollup merge of #27663: tbu-/pr_remove_fixme
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/path.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 5b456b580e5..93d51457331 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -409,7 +409,6 @@ fn has_physical_root(s: &[u8], prefix: Option<Prefix>) -> bool {
 }
 
 // basic workhorse for splitting stem and extension
-#[allow(unused_unsafe)] // FIXME
 fn split_file_at_dot(file: &OsStr) -> (Option<&OsStr>, Option<&OsStr>) {
     unsafe {
         if os_str_as_u8_slice(file) == b".." { return (Some(file), None) }