diff options
| author | bors <bors@rust-lang.org> | 2019-01-30 21:04:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-01-30 21:04:06 +0000 |
| commit | 147311c5fc62537da8eb9c6f69536bec6719d534 (patch) | |
| tree | a0ec71cd427842da687e498f28f983a4cf709498 /src/liballoc/lib.rs | |
| parent | d9a2e3b1ccf16c6d43f56f503bd80c1ad137d523 (diff) | |
| parent | b062b75559c1e6300324193873631e5e7beccfd7 (diff) | |
| download | rust-147311c5fc62537da8eb9c6f69536bec6719d534.tar.gz rust-147311c5fc62537da8eb9c6f69536bec6719d534.zip | |
Auto merge of #57974 - llogiq:vec-deque-try-fold, r=alexcrichton
override `VecDeque`'s `Iter::try_fold` This should improve performance (wherever it is used), but I haven't found the time to benchmark it yet.
Diffstat (limited to 'src/liballoc/lib.rs')
| -rw-r--r-- | src/liballoc/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index d2ff1bae635..5165a7ca5a8 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -113,6 +113,7 @@ #![feature(slice_partition_dedup)] #![feature(maybe_uninit)] #![feature(alloc_layout_extra)] +#![feature(try_trait)] // Allow testing this library |
