oopsie fixes

This commit is contained in:
2026-03-23 09:17:53 -06:00
parent da1c090f19
commit d4a1d5ad94
3 changed files with 10 additions and 6 deletions

View File

@@ -29,6 +29,7 @@ namespace spider {
_block_index = copy._block_index;
_blocks = copy._blocks;
if (_block_index < _blocks.size()) selectBlock(_block_index);
return *this;
}
InstrReelDyn& InstrReelDyn::operator=(InstrReelDyn&& move) noexcept {
@@ -43,6 +44,7 @@ namespace spider {
move._offset = 0;
move._size = 0;
move._total_size = 0;
return *this;
}
void InstrReelDyn::growToFit(isize index) {