mie: vector: add copy- and move-constructor support

This commit is contained in:
2026-01-18 21:52:39 +00:00
parent 04af390fe8
commit 759aaf9fd8
8 changed files with 171 additions and 77 deletions

View File

@@ -12,7 +12,7 @@ struct mie_block *mie_region_add_block(struct mie_region *region)
memset(block, 0x0, sizeof *block);
mie_vector_push_back(region->r_blocks, &block);
mie_vector_push_back(region->r_blocks, &block, NULL);
return block;
}