mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix CI (#4675)
This commit is contained in:
parent
b731ebad1b
commit
96b4956126
1 changed files with 2 additions and 2 deletions
|
@ -252,8 +252,8 @@ impl<'w, 's, Q: WorldQuery, F: WorldQuery, const K: usize> QueryCombinationIter<
|
|||
#[inline]
|
||||
pub fn fetch_next(&mut self) -> Option<[QueryItem<'_, Q>; K]>
|
||||
where
|
||||
QueryFetch<'w, Q>: Clone,
|
||||
QueryFetch<'w, F>: Clone,
|
||||
for<'a> QueryFetch<'a, Q>: Clone,
|
||||
for<'a> QueryFetch<'a, F>: Clone,
|
||||
{
|
||||
// safety: we are limiting the returned reference to self,
|
||||
// making sure this method cannot be called multiple times without getting rid
|
||||
|
|
Loading…
Reference in a new issue