repair for recent 32-bit MinGW
This commit is contained in:
parent
fa972f0476
commit
fe6d243a71
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user