More warning fixes + temporarily disable -D warning in the CI

This commit is contained in:
Sébastien Crozet
2022-01-02 17:29:19 +01:00
parent fcf9e61e28
commit 90edb4b532
2 changed files with 6 additions and 8 deletions

View File

@@ -80,7 +80,6 @@ pub struct BroadPhase {
layers: Vec<SAPLayer>,
smallest_layer: u8,
largest_layer: u8,
deleted_any: bool,
// NOTE: we maintain this hashmap to simplify collider removal.
// This information is also present in the ColliderProxyId
// component. However if that component is removed, we need
@@ -133,7 +132,6 @@ impl BroadPhase {
region_pool: Vec::new(),
reporting: HashMap::default(),
colliders_proxy_ids: HashMap::default(),
deleted_any: false,
}
}