mirror of
https://github.com/bevyengine/bevy
synced 2024-11-27 07:00:18 +00:00
Bump system tuple param limits
This commit is contained in:
parent
ac820b422a
commit
b6e564acac
4 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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>;
|
||||
|
|
Loading…
Reference in a new issue