mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 13:13:49 +00:00
fixed compile issue on resource tuple insertion macro
This commit is contained in:
parent
6b3524d171
commit
4ac40a1c2b
1 changed files with 1 additions and 1 deletions
|
@ -1016,7 +1016,7 @@ mod sealed {
|
|||
#[cfg(feature = "track_change_detection")] caller: &'static Location,
|
||||
){
|
||||
let ($($r,)*) = self;
|
||||
$($r.insert_into_world(world, caller);)*
|
||||
$($r.insert_into_world(world, #[cfg(feature = "track_change_detection")] caller);)*
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue