diff options
author | daan <daanl@outlook.com> | 2019-07-18 21:20:18 -0700 |
---|---|---|
committer | daan <daanl@outlook.com> | 2019-07-18 21:20:18 -0700 |
commit | 33aa5d92fa91f063bc09ffdbb6cc1aba40a9b759 (patch) | |
tree | de0616cc5f1e505d98c0273ef8777fe01a7de828 /include/mimalloc.h | |
parent | 93c8a5b693167c164f76935a7e276196a1214dfe (diff) |
fix to overrides on windows
Diffstat (limited to 'include/mimalloc.h')
-rw-r--r-- | include/mimalloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mimalloc.h b/include/mimalloc.h index 4726c4b..be78451 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -246,10 +246,10 @@ mi_decl_export void mi_option_set(mi_option_t option, long value); mi_decl_export void mi_option_set_default(mi_option_t option, long value); -// -------------------------------------------------------------------------------------------- -// mi prefixed implementations of various posix, Unix, Windows, and C++ allocation functions. -// (This can be convenient when providing overrides of these functions.) -// -------------------------------------------------------------------------------------------- +// ------------------------------------------------------------------------------------------------------- +// "mi" prefixed implementations of various posix, Unix, Windows, and C++ allocation functions. +// (This can be convenient when providing overrides of these functions as done in `mimalloc-override.h`.) +// ------------------------------------------------------------------------------------------------------- mi_decl_export size_t mi_malloc_size(const void* p) mi_attr_noexcept; mi_decl_export size_t mi_malloc_usable_size(const void *p) mi_attr_noexcept; |