Fix VS2019 _msize_base() exception specification

This commit is contained in:
Alexander 'z33ky' Hirsch 2021-11-14 17:17:28 +01:00
parent 76af96e3ae
commit 13ee304ce0

View File

@ -282,6 +282,9 @@ ALLOC_CALL void * __cdecl _recalloc ( void * memblock, size_t count, size_t size
}
size_t _msize_base( void *pMem )
#if _MSC_VER >= 1925 //VS2019+
throw()
#endif
{
return g_pMemAlloc->GetSize(pMem);
}