about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-07-08 08:33:13 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-07-27 16:38:25 -0700
commitb3aa1a6d4ac88f68e036a05fdf19be63b522b65d (patch)
tree77f61dd9cef4e552d058de8da0b3463ff71f097b /src/libstd/path.rs
parenta5c12f4e39d32af3c951b66bd2839bc0b5a1125b (diff)
downloadrust-b3aa1a6d4ac88f68e036a05fdf19be63b522b65d.tar.gz
rust-b3aa1a6d4ac88f68e036a05fdf19be63b522b65d.zip
std: Deprecate a number of unstable features
Many of these have long since reached their stage of being obsolete, so this
commit starts the removal process for all of them. The unstable features that
were deprecated are:

* cmp_partial
* fs_time
* hash_default
* int_slice
* iter_min_max
* iter_reset_fuse
* iter_to_vec
* map_in_place
* move_from
* owned_ascii_ext
* page_size
* read_and_zero
* scan_state
* slice_chars
* slice_position_elem
* subslice_offset
Diffstat (limited to 'src/libstd/path.rs')
-rw-r--r--src/libstd/path.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index d3573345afb..f5f8508e9aa 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -200,7 +200,7 @@ mod platform {
                         return Some(VerbatimUNC(server, share));
                     } else {
                         // \\?\path
-                        let idx = path.position_elem(&b'\\');
+                        let idx = path.iter().position(|&b| b == b'\\');
                         if idx == Some(2) && path[1] == b':' {
                             let c = path[0];
                             if c.is_ascii() && (c as char).is_alphabetic() {
@@ -214,7 +214,8 @@ mod platform {
                 } else if path.starts_with(b".\\") {
                     // \\.\path
                     path = &path[2..];
-                    let slice = &path[.. path.position_elem(&b'\\').unwrap_or(path.len())];
+                    let pos = path.iter().position(|&b| b == b'\\');
+                    let slice = &path[..pos.unwrap_or(path.len())];
                     return Some(DeviceNS(u8_slice_as_os_str(slice)));
                 }
                 match parse_two_comps(path, is_sep_byte) {