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
It seems the issue is that Pack does not implement Drop, which from my understanding can result in corrupted storage since e.g. for Stash its Drop implementation currently only clears Stash::elems: LazyIndexMap<T>, but not Stash::header: Pack<Header>.
The text was updated successfully, but these errors were encountered:
I created/adapted
Drop
tests for some of our datastructures (implementation here).Those fail though:
It seems the issue is that
Pack
does not implementDrop
, which from my understanding can result in corrupted storage since e.g. forStash
itsDrop
implementation currently only clearsStash::elems: LazyIndexMap<T>
, but notStash::header: Pack<Header>
.The text was updated successfully, but these errors were encountered: