Remove last_access_time from TableEntryVal.

Turns out - this was no longer used. And it takes up at least 8 bytes
of space for every single table/set entry.
This commit is contained in:
Johanna Amann 2020-06-18 22:59:08 +00:00
parent 7ae5589469
commit 64af3cdf05
2 changed files with 0 additions and 4 deletions

View file

@ -1307,7 +1307,6 @@ unsigned int ListVal::MemoryAllocation() const
TableEntryVal* TableEntryVal::Clone(Val::CloneState* state)
{
auto rval = new TableEntryVal(val ? val->Clone(state) : nullptr);
rval->last_access_time = last_access_time;
rval->expire_access_time = expire_access_time;
return rval;
}