mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-07-06 11:34:38 +03:00
update documentation
This commit is contained in:
parent
dc94d25890
commit
9453d8b468
2 changed files with 5 additions and 2 deletions
|
@ -784,6 +784,9 @@ void mi_free_aligned(void* p, size_t alignment);
|
|||
/// raise `std::bad_alloc` exception on failure.
|
||||
void* mi_new(std::size_t n) noexcept(false);
|
||||
|
||||
/// raise `std::bad_alloc` exception on failure or overflow.
|
||||
void* mi_new_n(size_t count, size_t size) noexcept(false);
|
||||
|
||||
/// raise `std::bad_alloc` exception on failure.
|
||||
void* mi_new_aligned(std::size_t n, std::align_val_t alignment) noexcept(false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue