You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The two Cell<bool> at the beginning of the struct could be moved to the bottom for more optimal alignment
The data_size field is only used for tracking how many bytes are allocated by the GC, but it's functionality is duplicated by the Layout field which also contains the size
The text was updated successfully, but these errors were encountered:
Currently it has quite a lot of redundancy:
Cell<bool>
at the beginning of the struct could be moved to the bottom for more optimal alignmentdata_size
field is only used for tracking how many bytes are allocated by the GC, but it's functionality is duplicated by theLayout
field which also contains the sizeThe text was updated successfully, but these errors were encountered: