Fine clang, you win

This commit is contained in:
kalaposfos13 2025-07-16 14:35:11 +02:00
parent 3842a02d25
commit ca7cce079e

View File

@ -51,7 +51,8 @@ static PS4_SYSV_ABI void* RunMainEntry [[noreturn]] (EntryParams* params) {
#endif #endif
Linker::Linker() Linker::Linker()
: memory{Memory::Instance()}, heap_api{new HeapAPI{.heap_malloc = &Libraries::LibcInternal::internal_malloc, : memory{Memory::Instance()},
heap_api{new HeapAPI{.heap_malloc = &Libraries::LibcInternal::internal_malloc,
.heap_free = &Libraries::LibcInternal::internal_free, .heap_free = &Libraries::LibcInternal::internal_free,
.heap_calloc = &Libraries::LibcInternal::internal_calloc, .heap_calloc = &Libraries::LibcInternal::internal_calloc,
.heap_realloc = &Libraries::LibcInternal::internal_realloc, .heap_realloc = &Libraries::LibcInternal::internal_realloc,