Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketasaja committed Jan 26, 2025
1 parent 6927985 commit 5def2af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zap/src/irgen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ pub trait Gen {
Expr::Vector(
Box::new(self.readnumty(x_numty)),
Box::new(self.readnumty(y_numty)),
z_numty.map(|z_numty| Box::new(self.readnumty(z_numty)))
z_numty.map(|z_numty| Box::new(self.readnumty(z_numty))),
)
}

Expand Down
2 changes: 1 addition & 1 deletion zap/src/parser/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ impl<'src> Converter<'src> {
Ty::Vector(
Box::new(self.ty(x_ty)),
Box::new(self.ty(y_ty)),
z_ty.as_ref().map(|z_ty| Box::new(self.ty(z_ty)))
z_ty.as_ref().map(|z_ty| Box::new(self.ty(z_ty))),
)
}

Expand Down

0 comments on commit 5def2af

Please sign in to comment.