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
Looks to happen when deleting from the end of the heap. The code is safe under the assumption that pop!(::Vector) doesn't resize underlying storage, but not ideal to have this throw when bounds checks are forced.
The text was updated successfully, but these errors were encountered:
If run with
--check-bounds=yes
, the following throwsBoundsError
:Offending line
Looks to happen when deleting from the end of the heap. The code is safe under the assumption that
pop!(::Vector)
doesn't resize underlying storage, but not ideal to have this throw when bounds checks are forced.The text was updated successfully, but these errors were encountered: