Skip to content

Commit

Permalink
fixup! fixup! Fixes #21139: Update to Rust 1.61.0 and update dependen…
Browse files Browse the repository at this point in the history
…cies

Fixes #21139: Update to Rust 1.61.0 and update dependencies
  • Loading branch information
amousset committed May 19, 2022
1 parent 65a74f1 commit 8b56f54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions language/src/ir/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,10 +457,10 @@ impl<'src> Statement<'src> {
PStatement::BlockDeclaration(PBlockDeclaration {
source,
metadata,
children: children_bis,
children: children2,
}) => {
let (mut _errors, metadata) = create_metadata(metadata);
(match map_vec_results(children_bis.into_iter(), |x| {
(match map_vec_results(children2.into_iter(), |x| {
Statement::from_pstatement(context, children, x, parameter_defaults, enum_list)
}) {
Ok(children) => Ok(Statement::BlockDeclaration(BlockDeclaration {
Expand Down

0 comments on commit 8b56f54

Please sign in to comment.