fix bsp arg2

This commit is contained in:
facile pop culture reference 2026-08-06 10:18:28 +03:00
parent b09719993a
commit 39d3dacf1f
5 changed files with 10 additions and 8 deletions

View file

@ -182,7 +182,7 @@ pub trait AsMutOpt<T> { fn as_mut_opt (&mut self) -> Option<&mut T>; }
/// Some layout operations exist in multiple variants that take a single argument.
/// Their handling in [eval_view] is uniform and goes like this:
macro_rules! eval_enum ((
$name:literal, $output:ident, $state:ident, $value:expr, $arg0:expr, $Enum:ident {
$name:literal, $output:ident, $state:ident, $value:expr, $Enum:ident {
$($v:literal => $V:ident),* $(,)?
}
) => {{