diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-09-25 22:34:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-25 22:34:47 +0200 |
| commit | 6a0f45b3f485279a04884e11fe2a37a205bdcea3 (patch) | |
| tree | 5771883f78bff905ce66890280786fc34585d640 /src/liballoc/lib.rs | |
| parent | 49e0049e9f2395983ca3cbc82c9665a750931de6 (diff) | |
| parent | 068c92b2cc0620d18eee1066cd3460f37c9ed9f3 (diff) | |
| download | rust-6a0f45b3f485279a04884e11fe2a37a205bdcea3.tar.gz rust-6a0f45b3f485279a04884e11fe2a37a205bdcea3.zip | |
Rollup merge of #54537 - sdroege:chunks-exact, r=alexcrichton
Rename slice::exact_chunks() to slice::chunks_exact() See https://github.com/rust-lang/rust/issues/47115#issuecomment-403090815 and https://github.com/rust-lang/rust/issues/47115#issuecomment-424053547
Diffstat (limited to 'src/liballoc/lib.rs')
| -rw-r--r-- | src/liballoc/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 6ce24b65990..7960936dad6 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -116,7 +116,7 @@ #![feature(unsize)] #![feature(allocator_internals)] #![feature(on_unimplemented)] -#![feature(exact_chunks)] +#![feature(chunks_exact)] #![feature(rustc_const_unstable)] #![feature(const_vec_new)] #![feature(slice_partition_dedup)] |
