Skip to content

Commit b848281

Browse files
diliopfacebook-github-bot
authored andcommitted
Update platform010 & platform010-aarch64 symlinks
Summary: Release notes: https://blog.rust-lang.org/2025/05/15/Rust-1.87.0/ Relevant changes: * `feature(extract_if)` stabilized * `feature(ptr_sub_ptr)` stabilized * `feature(os_str_display)` stabilized * `feature(slice_take)` stabilized * `feature(hash_raw_entry)` removed * `sub_ptr` renamed to `offset_from_unsigned` ([#137483](rust-lang/rust#137483)) * `MaybeUninit::uninit_array()` uses replaced with inline const blocks ([#125082](rust-lang/rust#125082)) * Lint `#[must_use`] attributes applied to methods in trait impls ([#136923](rust-lang/rust#136923)) * `clippy` lints: `io_other_error`, `elidable_lifetime_names`, `mem_replace_option_with_some`, `manual_contains`, `owned_cow` Reviewed By: dtolnay Differential Revision: D75010345 fbshipit-source-id: ab6ee65fe82eb7fe90b5aa9bbeeedefed2befad1
1 parent fe03f33 commit b848281

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ndslice/src/selection/routing.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ fn get_next_steps(
775775
) -> Result<Vec<RoutingFrame>> {
776776
let mut seen = HashSet::new();
777777
let mut unique_steps = vec![];
778-
dest.next_steps(chooser, &mut |step| {
778+
let _ = dest.next_steps(chooser, &mut |step| {
779779
if let RoutingStep::Forward(frame) = step {
780780
let key = RoutingFrameKey::new(&frame);
781781
if seen.insert(key) {
@@ -1463,7 +1463,7 @@ mod tests {
14631463
ControlFlow::Continue(())
14641464
};
14651465

1466-
frame.next_steps(
1466+
let _ = frame.next_steps(
14671467
&mut |_| panic!("Choice encountered in test_routing_06"),
14681468
&mut visitor,
14691469
);
@@ -1488,7 +1488,7 @@ mod tests {
14881488
let frame = RoutingFrame::root(selection, slice.clone());
14891489

14901490
let mut steps = vec![];
1491-
frame.next_steps(
1491+
let _ = frame.next_steps(
14921492
&mut |_| panic!("Choice encountered in test_routing_07"),
14931493
&mut |step: RoutingStep| {
14941494
steps.push(step);

ndslice/src/selection/test_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ pub fn collect_routed_paths(selection: &Selection, slice: &Slice) -> RoutedPathT
193193
ControlFlow::Continue(())
194194
};
195195

196-
frame.next_steps(
196+
let _ = frame.next_steps(
197197
&mut |_| panic!("Choice encountered in collect_routed_nodes"),
198198
&mut visitor,
199199
);

rust-toolchain

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# @rustc_version: rustc 1.86.0-nightly (9cd60bd2c 2025-02-15)
1+
# @rustc_version: rustc 1.87.0-nightly (920d95eaf 2025-03-28)
22
[toolchain]
3-
channel = "nightly-2025-02-16"
3+
channel = "nightly-2025-03-29"

0 commit comments

Comments
 (0)