@@ -1074,7 +1074,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
10741074 /// A more complicated version of the binary op,
10751075 /// where we force the operand to have the same type as the result.
10761076 /// This is mostly needed for "i++" and "i--" coming from GLSL.
1077- #[ allow ( clippy:: too_many_arguments) ]
1077+ #[ expect ( clippy:: too_many_arguments) ]
10781078 fn parse_expr_binary_op_sign_adjusted (
10791079 & mut self ,
10801080 ctx : & mut BlockContext ,
@@ -1152,7 +1152,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
11521152 /// A version of the binary op where one or both of the arguments might need to be casted to a
11531153 /// specific integer kind (unsigned or signed), used for operations like OpINotEqual or
11541154 /// OpUGreaterThan.
1155- #[ allow ( clippy:: too_many_arguments) ]
1155+ #[ expect ( clippy:: too_many_arguments) ]
11561156 fn parse_expr_int_comparison (
11571157 & mut self ,
11581158 ctx : & mut BlockContext ,
@@ -1300,7 +1300,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
13001300 Ok ( ( ) )
13011301 }
13021302
1303- #[ allow ( clippy:: too_many_arguments) ]
1303+ #[ expect ( clippy:: too_many_arguments) ]
13041304 fn insert_composite (
13051305 & self ,
13061306 root_expr : Handle < crate :: Expression > ,
@@ -1424,7 +1424,7 @@ impl<I: Iterator<Item = u32>> Frontend<I> {
14241424 Ok ( ( p_lexp_handle, p_base_ty. handle ) )
14251425 }
14261426
1427- #[ allow ( clippy:: too_many_arguments) ]
1427+ #[ expect ( clippy:: too_many_arguments) ]
14281428 fn parse_atomic_expr_with_value (
14291429 & mut self ,
14301430 inst : Instruction ,
0 commit comments