You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Added hint to unmapfileview to be able to add useful information to asserts on fails * Added error handling for vsnprintf returning error * Fixed memory stomp in unit test * Removed usage of %hs on non-windows since asan complains about it * Changed UBA_USE_MIMALLOC to always be defined and be 0 or 1 instead of using ifdef * Enabled mimalloc on linux [CL 31355161 by henrik karlsson in 5.4 branch]
10 lines
287 B
C++
10 lines
287 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
// Compile this file to override new and delete
|
|
// To override malloc/free, include mimalloc-override.h
|
|
|
|
#if UBA_USE_MIMALLOC
|
|
// mimalloc-new-delete.h should be included in only one source file!
|
|
#include <mimalloc-new-delete.h>
|
|
#endif
|