Change from <> to ""

This commit is contained in:
gingerBill
2024-01-29 17:37:54 +00:00
parent 58bfacfdf3
commit 11f1d8e73e
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ terms of the MIT license. A copy of the license can be found in the file
// ---------------------------------------------------------------------------
#if defined(__cplusplus)
#include <new>
#include <mimalloc.h>
#include "mimalloc.h"
#if defined(_MSC_VER) && defined(_Ret_notnull_) && defined(_Post_writable_byte_size_)
// stay consistent with VCRT definitions

View File

@@ -15,7 +15,7 @@ each source file in a project (but be careful when using external code to
not accidentally mix pointers from different allocators).
-----------------------------------------------------------------------------*/
#include <mimalloc.h>
#include "mimalloc.h"
// Standard C allocation
#define malloc(n) mi_malloc(n)