diff options
author | Daan <daanl@outlook.com> | 2021-11-14 15:39:05 -0800 |
---|---|---|
committer | Daan <daanl@outlook.com> | 2021-11-14 15:39:05 -0800 |
commit | 18fc788201e9d27c3f22d4a5004031b92793a1fa (patch) | |
tree | e651edd45e07b5cb7e85fa22fc801470d90b52c8 /include/mimalloc.h | |
parent | 5a05fd446a6656096fbff2ed1c464b70b57ec6a3 (diff) | |
parent | 4a590b1447e9d27e00dcd5bc9ac62eab6d7e51bb (diff) |
merge from dev
Diffstat (limited to 'include/mimalloc.h')
-rw-r--r-- | include/mimalloc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mimalloc.h b/include/mimalloc.h index 58c9110..71cdaa8 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -8,7 +8,7 @@ terms of the MIT license. A copy of the license can be found in the file #ifndef MIMALLOC_H #define MIMALLOC_H -#define MI_MALLOC_VERSION 201 // major + 2 digits minor +#define MI_MALLOC_VERSION 203 // major + 2 digits minor // ------------------------------------------------------ // Compiler specific attributes @@ -391,6 +391,7 @@ mi_decl_nodiscard mi_decl_export void* mi_new_reallocn(void* p, size_t newcount, // --------------------------------------------------------------------------------------------- #ifdef __cplusplus +#include <cstddef> // std::size_t #include <cstdint> // PTRDIFF_MAX #if (__cplusplus >= 201103L) || (_MSC_VER > 1900) // C++11 #include <type_traits> // std::true_type |