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
Vec<InstructionBox> in some cases allocates an initial buffer with size 4 (#5083 (comment)). InstructionBox is a large type (176 bytes), so it is worth replacing it with a read-only Box<[InstructionBox]> to be sure we don't waste memory on unused buffer capacity.
The text was updated successfully, but these errors were encountered:
Vec<InstructionBox>
in some cases allocates an initial buffer with size 4 (#5083 (comment)).InstructionBox
is a large type (176 bytes), so it is worth replacing it with a read-onlyBox<[InstructionBox]>
to be sure we don't waste memory on unused buffer capacity.The text was updated successfully, but these errors were encountered: