adding compiler tests to regression suite

This commit is contained in:
Blaise Tine
2021-03-09 05:01:56 -08:00
parent ad11bdfc87
commit 3a266fc792
5 changed files with 24 additions and 7 deletions

View File

@@ -188,9 +188,7 @@ RAM::RAM(uint32_t num_pages, uint32_t page_size)
}
RAM::~RAM() {
for (auto& page : mem_) {
delete[] page;
}
this->clear();
}
void RAM::clear() {