Correct capture of PoolInfo::allocable_size_.

Change-Id: I80757bb36048bc15b928220aca0a1eb5d898ab22
This commit is contained in:
Sean Keely
2020-04-21 19:03:24 -05:00
orang tua 3fe891d5da
melakukan b90bf473c1
@@ -112,7 +112,7 @@ class PoolInfo {
segment_ = segment;
is_fine_grained_ = is_fine_grained;
size_ = size;
allocable_size_ = size;
allocable_size_ = max_alloc_size;
owner_agent_info_ = agent_info;
}
PoolInfo() {}