Bump system tuple param limits

This commit is contained in:
Marco Buono 2023-05-28 17:34:59 -03:00
parent ac820b422a
commit b6e564acac
4 changed files with 4 additions and 4 deletions

View file

@ -237,4 +237,4 @@ macro_rules! impl_exclusive_system_function {
}
// Note that we rely on the highest impl to be <= the highest order of the tuple impls
// of `SystemParam` created.
all_tuples!(impl_exclusive_system_function, 0, 16, F);
all_tuples!(impl_exclusive_system_function, 0, 17, F);

View file

@ -86,4 +86,4 @@ macro_rules! impl_exclusive_system_param_tuple {
};
}
all_tuples!(impl_exclusive_system_param_tuple, 0, 16, P);
all_tuples!(impl_exclusive_system_param_tuple, 0, 17, P);

View file

@ -629,4 +629,4 @@ macro_rules! impl_system_function {
// Note that we rely on the highest impl to be <= the highest order of the tuple impls
// of `SystemParam` created.
all_tuples!(impl_system_function, 0, 16, F);
all_tuples!(impl_system_function, 0, 17, F);

View file

@ -1410,7 +1410,7 @@ macro_rules! impl_system_param_tuple {
};
}
all_tuples!(impl_system_param_tuple, 0, 16, P);
all_tuples!(impl_system_param_tuple, 0, 17, P);
pub mod lifetimeless {
pub type SQuery<Q, F = ()> = super::Query<'static, 'static, Q, F>;