@@ -1091,7 +1091,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
10911091 /// A more complicated version of the binary op,
10921092 /// where we force the operand to have the same type as the result.
10931093 /// This is mostly needed for "i++" and "i--" coming from GLSL.
1094- #[ allow ( clippy:: too_many_arguments) ]
1094+ #[ expect ( clippy:: too_many_arguments) ]
10951095 fn parse_expr_binary_op_sign_adjusted (
10961096 & mut self ,
10971097 ctx : & mut BlockContext ,
@@ -1169,7 +1169,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
11691169 /// A version of the binary op where one or both of the arguments might need to be casted to a
11701170 /// specific integer kind (unsigned or signed), used for operations like OpINotEqual or
11711171 /// OpUGreaterThan.
1172- #[ allow ( clippy:: too_many_arguments) ]
1172+ #[ expect ( clippy:: too_many_arguments) ]
11731173 fn parse_expr_int_comparison (
11741174 & mut self ,
11751175 ctx : & mut BlockContext ,
@@ -1317,7 +1317,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
13171317 Ok ( ( ) )
13181318 }
13191319
1320- #[ allow ( clippy:: too_many_arguments) ]
1320+ #[ expect ( clippy:: too_many_arguments) ]
13211321 fn insert_composite (
13221322 & self ,
13231323 root_expr : Handle < crate :: Expression > ,
@@ -1441,7 +1441,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
14411441 Ok ( ( p_lexp_handle, p_base_ty. handle ) )
14421442 }
14431443
1444- #[ allow ( clippy:: too_many_arguments) ]
1444+ #[ expect ( clippy:: too_many_arguments) ]
14451445 fn parse_atomic_expr_with_value (
14461446 & mut self ,
14471447 inst : Instruction ,
0 commit comments