Files
henrik karlsson c35c4a0984 [UBA]
* 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]
2024-02-09 16:14:14 -05:00

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