summaryrefslogtreecommitdiff
path: root/benchmark/vm_zsuper_splat_calls.yml
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2024-05-29 14:13:15 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2024-05-29 15:58:35 -0400
commit4a9ef9e23cbb73ac7f0d4410f0198bbd583701f5 (patch)
treebe7a7df22b8f079d81f5b0115c4e232a5979d0c5 /benchmark/vm_zsuper_splat_calls.yml
parenta760e21bc122c67478b318b3f032d70fac1a6077 (diff)
YJIT: Fix a warning from nightly rustHEADmaster
No plan about migrating to the 2024 edition yet (it's not even available yet), but this is a simple enough suggestion so we can just take it. ``` warning: this method call resolves to `<&Box<[T]> as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<Box<[T]> as IntoIterator>::into_iter` in Rust 2024 --> ../yjit/src/core.rs:1003:49 | 1003 | formatter.debug_list().entries(branches.into_iter()).finish() | ^^^^^^^^^ | = warning: this changes meaning in Rust 2024 = note: `#[warn(boxed_slice_into_iter)]` on by default help: use `.iter()` instead of `.into_iter()` to avoid ambiguity | 1003 | formatter.debug_list().entries(branches.iter()).finish() | ~~~~ help: or use `IntoIterator::into_iter(..)` instead of `.into_iter()` to explicitly iterate by value | 1003 | formatter.debug_list().entries(IntoIterator::into_iter(branches)).finish() | ++++++++++++++++++++++++ ~ ```
Diffstat (limited to 'benchmark/vm_zsuper_splat_calls.yml')
0 files changed, 0 insertions, 0 deletions