mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-04 14:39:31 +03:00
fix passing void as argument
This commit is contained in:
parent
b3ce61c408
commit
fac0d4b409
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ static inline void mi_block_set_next(mi_page_t* page, mi_block_t* block, mi_bloc
|
|||
#include <windows.h>
|
||||
static inline uintptr_t _mi_thread_id(void) mi_attr_noexcept {
|
||||
// Windows: works on Intel and ARM in both 32- and 64-bit
|
||||
return (uintptr_t)NtCurrentTeb(void);
|
||||
return (uintptr_t)NtCurrentTeb();
|
||||
}
|
||||
#elif (defined(__GNUC__) || defined(__clang__)) && \
|
||||
(defined(__x86_64__) || defined(__i386__) || defined(__arm__) || defined(__aarch64__))
|
||||
|
|
Loading…
Add table
Reference in a new issue