diff options
| author | Tobias Bucher <tobiasbucher5991@gmail.com> | 2015-08-11 17:13:35 +0200 |
|---|---|---|
| committer | Tobias Bucher <tobiasbucher5991@gmail.com> | 2015-08-11 17:13:35 +0200 |
| commit | 0354d7a800b4e1d9fe2ca024c1d4c05252601b23 (patch) | |
| tree | 6675086ee3475cd4f3918b761f615716a6263e01 /src/libstd/path.rs | |
| parent | c756526eb2aed91e96d2b5d9461898cb33565707 (diff) | |
| download | rust-0354d7a800b4e1d9fe2ca024c1d4c05252601b23.tar.gz rust-0354d7a800b4e1d9fe2ca024c1d4c05252601b23.zip | |
Remove unneeded FIXME
Diffstat (limited to 'src/libstd/path.rs')
| -rw-r--r-- | src/libstd/path.rs | 1 |
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) } |
