repair for recent 32-bit MinGW

This commit is contained in:
Matthew Flatt 2019-03-06 08:05:02 -07:00
parent fa972f0476
commit fe6d243a71

View File

@ -579,6 +579,11 @@ void operator delete(void * p, unsigned long long)
free(p);
}
void operator delete(void * p, unsigned int)
{
free(p);
}
#endif
#ifdef MZ_PRECISE_GC