Przeglądaj źródła

Change from <> to ""

gingerBill 1 rok temu
rodzic
commit
11f1d8e73e

+ 1 - 1
src/mimalloc/mimalloc-new-delete.h

@@ -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

+ 1 - 1
src/mimalloc/mimalloc-override.h

@@ -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)