fix(furlang): use std::free() instead of delete in arena

This commit is contained in:
2026-06-01 21:14:56 +02:00
parent 62619cd0bc
commit 6775ddf7d4
+1 -1
View File
@@ -22,7 +22,7 @@ arena::~arena() {
region* next = nullptr;
for (region* region = m_head; region != nullptr; region = next) {
next = region->next;
delete region;
std::free(region); // NOLINT
}
}