Skip to content

Commit 036db11

Browse files
diliopfacebook-github-bot
authored andcommitted
Update platform010 & platform010-aarch64 symlinks
Summary: Upgrading Rust from `1.80.1` to `1.81.0` ([release notes](https://blog.rust-lang.org/2024/09/05/Rust-1.81.0.html)) with the following changes affecting `fbsource`: * Feature stabilizations: * `io_slice_advance` ([#62726](rust-lang/rust#62726)) * `panic_info_message` ([#66745](rust-lang/rust#66745)) * `fs_try_exists` ([#83186](rust-lang/rust#83186)) * `lint_reasons` ([#120924](rust-lang/rust#120924)) * `duration_abs_diff` ([#117618](rust-lang/rust#117618)) * `effects` ([#102090](rust-lang/rust#102090)) * New `clippy` lints: * `manual_inspect` ([#12287](rust-lang/rust-clippy#12287)) * `manual_pattern_char_comparison` ([#12849](rust-lang/rust-clippy#12849)) * Other: * `NEVER_TYPE_FALLBACK_FLOWING_INTO_UNSAFE` became a deny-by-default lint ([#126881](rust-lang/rust#126881) & [#123748](rust-lang/rust#123748)) * Changes to `stringify!` introducing whitespaces between some tokens ([#125174](rust-lang/rust#125174)) * `format!` is now marked with a `must_use` hint ([#127355](rust-lang/rust#127355)) ignore-conflict-markers Reviewed By: zertosh, dtolnay Differential Revision: D63864870 fbshipit-source-id: c8d61f3e9483ec709c8116514cfb030c883ec262
1 parent 42c4c0d commit 036db11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shed/hash_memo/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl<T: Hash> Hash for EagerHashMemoizer<T> {
192192
// the finish value.
193193
// Hasher has only limited apis, and this is safer than transmuting
194194
// to use a specific write_finish() api.
195-
state.finish();
195+
let _ = state.finish();
196196

197197
// If we are using the MemoHasher, this will set the finish value.
198198
// Otherwise it harmlessly alters the hash a bit.
@@ -260,7 +260,7 @@ impl<T: Hash, I: BuildHasher> Hash for LazyHashMemoizer<'_, T, I> {
260260
// Tells MemoHasher to interpret the write_u64 as the finish value.
261261
// Hasher has only limited apis, and this is safer than transmuting
262262
// to use a specific write_finish() api.
263-
state.finish();
263+
let _ = state.finish();
264264

265265
// If we are using the MemoHasher, this will set the finish value.
266266
// Otherwise it harmlessly alters the hash a bit

0 commit comments

Comments
 (0)