Skip to content

Commit fefa450

Browse files
chore(hydroflow_lang): Allow clippy::redundant_locals, for latest nightlies (hydro-project#873)
rust-lang/rust-clippy#11290
1 parent cf9fc5e commit fefa450

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hydroflow_lang/src/graph/hydroflow_graph.rs

+2
Original file line numberDiff line numberDiff line change
@@ -810,6 +810,8 @@ impl HydroflowGraph {
810810

811811
{
812812
// Determine pull and push halves of the `Pivot`.
813+
#[allow(unknown_lints)]
814+
#[allow(clippy::redundant_locals)] // https://github.com/rust-lang/rust-clippy/issues/11290
813815
let pull_to_push_idx = pull_to_push_idx;
814816
let pull_ident =
815817
self.node_as_ident(subgraph_nodes[pull_to_push_idx - 1], false);

0 commit comments

Comments
 (0)