mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 18:20:39 +08:00
fix: fix function lookup issue
ref: https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/1881
This commit is contained in:
@@ -14,7 +14,7 @@ const size_t asst::platform::page_size = get_page_size();
|
||||
|
||||
void* asst::platform::aligned_alloc(size_t len, size_t align)
|
||||
{
|
||||
return aligned_alloc(len, align);
|
||||
return ::aligned_alloc(len, align);
|
||||
}
|
||||
|
||||
void asst::platform::aligned_free(void* ptr)
|
||||
|
||||
Reference in New Issue
Block a user