Skip to content

Commit

Permalink
export TaskPoolThreadAssignmentPolicy (#4145)
Browse files Browse the repository at this point in the history
# Objective

- Fix #2163
- Allow configuration of thread pools through `DefaultTaskPoolOptions`

## Solution

- `TaskPoolThreadAssignmentPolicy` was already public but not exported. Export it.
  • Loading branch information
mockersf committed Mar 8, 2022
1 parent e41c5c2 commit de2a47c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mod time;
pub use bytemuck::{bytes_of, cast_slice, Pod, Zeroable};
pub use float_ord::*;
pub use name::*;
pub use task_pool_options::DefaultTaskPoolOptions;
pub use task_pool_options::*;
pub use time::*;

pub mod prelude {
Expand Down

0 comments on commit de2a47c

Please sign in to comment.