diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2017-12-13 01:02:19 -0600 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-12-13 01:15:18 -0600 |
| commit | 2bf0df777b7712d1b719cd5ac7cce63176b7384c (patch) | |
| tree | 476d3bba1e8abfe11152ac18c0ccb763e810ea72 /src/libstd/sys/windows | |
| parent | 707d0708158dabd9b0a12af21a4b51bf1713cb9e (diff) | |
| download | rust-2bf0df777b7712d1b719cd5ac7cce63176b7384c.tar.gz rust-2bf0df777b7712d1b719cd5ac7cce63176b7384c.zip | |
Move rust memchr impl to libcore
Diffstat (limited to 'src/libstd/sys/windows')
| -rw-r--r-- | src/libstd/sys/windows/memchr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/memchr.rs b/src/libstd/sys/windows/memchr.rs index 5a5386acaa5..fa7c816fd02 100644 --- a/src/libstd/sys/windows/memchr.rs +++ b/src/libstd/sys/windows/memchr.rs @@ -12,4 +12,4 @@ // Copyright 2015 Andrew Gallant, bluss and Nicolas Koch // Fallback memchr is fastest on windows -pub use sys_common::memchr::fallback::{memchr, memrchr}; +pub use core::slice::memchr::{memchr, memrchr}; |
