Skip to content

Commit 604d3c2

Browse files
committed
fix no_std
1 parent 1ea3ef7 commit 604d3c2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

crates/bevy_ecs/src/schedule/schedule.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ use alloc::{
1010
vec,
1111
vec::Vec,
1212
};
13-
use bevy_platform::collections::{HashMap, HashSet};
13+
use bevy_platform::{
14+
collections::{HashMap, HashSet},
15+
hash::FixedHasher,
16+
};
1417
use bevy_utils::{default, TypeIdMap};
1518
use core::{
1619
any::{Any, TypeId},
@@ -698,7 +701,7 @@ pub struct ScheduleGraph {
698701
anonymous_sets: usize,
699702
changed: bool,
700703
settings: ScheduleBuildSettings,
701-
passes: IndexMap<TypeId, Box<dyn ScheduleBuildPassObj>>,
704+
passes: IndexMap<TypeId, Box<dyn ScheduleBuildPassObj>, FixedHasher>,
702705
}
703706

704707
impl ScheduleGraph {

0 commit comments

Comments
 (0)