浏览代码

Change from <> to ""

gingerBill 1 年之前
父节点
当前提交
11f1d8e73e
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      src/mimalloc/mimalloc-new-delete.h
  2. 1 1
      src/mimalloc/mimalloc-override.h

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