Cargo fmt

This commit is contained in:
Joshua Hoeflich 2021-08-15 18:14:43 -05:00
parent 1c6ac84f2f
commit 34def25b55
2 changed files with 6 additions and 7 deletions

View file

@ -201,9 +201,12 @@ where
Symbol::NUM_SUB => {
self.build_run_low_level(sym, &LowLevel::NumSub, arguments, layout)
}
Symbol::NUM_ROUND => {
self.build_run_low_level(sym, &LowLevel::NumRound, arguments, layout)
}
Symbol::NUM_ROUND => self.build_run_low_level(
sym,
&LowLevel::NumRound,
arguments,
layout,
),
Symbol::BOOL_EQ => {
self.build_run_low_level(sym, &LowLevel::Eq, arguments, layout)
}