diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-03-30 10:30:57 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-03-31 12:56:51 +0200 |
| commit | 6f4df8c0c20969a1059a4b0cdf63e4ac33447e1b (patch) | |
| tree | aec0157167daa97a3e89ea3c8e3f9a7bd7d6d5ab /src/libstd/sys/cloudabi/shims | |
| parent | 379c380a60e7b3adb6c6f595222cbfa2d9160a20 (diff) | |
| download | rust-6f4df8c0c20969a1059a4b0cdf63e4ac33447e1b.tar.gz rust-6f4df8c0c20969a1059a4b0cdf63e4ac33447e1b.zip | |
libstd: deny(elided_lifetimes_in_paths), fixes in cloudabi
Diffstat (limited to 'src/libstd/sys/cloudabi/shims')
| -rw-r--r-- | src/libstd/sys/cloudabi/shims/os.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/cloudabi/shims/os.rs b/src/libstd/sys/cloudabi/shims/os.rs index 83ef69eb666..944b9525b3b 100644 --- a/src/libstd/sys/cloudabi/shims/os.rs +++ b/src/libstd/sys/cloudabi/shims/os.rs @@ -34,7 +34,7 @@ pub fn unsetenv(_: &OsStr) -> io::Result<()> { pub struct SplitPaths<'a>(&'a Void); -pub fn split_paths(_unparsed: &OsStr) -> SplitPaths { +pub fn split_paths(_unparsed: &OsStr) -> SplitPaths<'_> { panic!("unsupported") } |
