merge from dev

This commit is contained in:
Daan Leijen 2024-12-20 13:01:00 -08:00
commit f6408235f7
21 changed files with 653 additions and 77 deletions

View file

@ -47,6 +47,7 @@ int main() {
mi_stats_reset(); // ignore earlier allocations
various_tests();
test_mixed1();
//test_std_string();
//test_thread_local();
// heap_thread_free_huge();
@ -107,6 +108,9 @@ static void various_tests() {
t = new (tbuf) Test(42);
t->~Test();
delete[] tbuf;
const char* ptr = ::_Getdays(); // test _base overrid
free((void*)ptr);
}
class Static {