SAP: make the update_count a u8.

It can only have three values 0,1,2, so storing a whole usize is useless.
This commit is contained in:
Crozet Sébastien
2020-11-10 17:04:12 +01:00
parent da5f47df47
commit 0a5cd9bc6e

View File

@@ -340,7 +340,7 @@ struct SAPRegion {
existing_proxies: BitVec,
#[cfg_attr(feature = "serde-serialize", serde(skip))]
to_insert: Vec<usize>, // Workspace
update_count: usize,
update_count: u8,
proxy_count: usize,
}