eepp static build fixes for Windows

This commit is contained in:
Martín Lucas Golini
2023-03-30 13:49:18 -03:00
parent 19d7d4a06e
commit 21ec899dac
15 changed files with 43 additions and 3 deletions

View File

@@ -58,9 +58,9 @@ class EE_API MemoryManager {
return data;
}
inline static void* allocate( size_t size ) { return malloc( size ); }
static void* allocate( size_t size );
inline static void* reallocate( void* ptr, size_t size ) { return realloc( ptr, size ); }
static void* reallocate( void* ptr, size_t size );
static size_t getPeakMemoryUsage();