Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ubpa/Utopia
/ Malloc
Method
Malloc
src/ScriptSystem/LuaMemory.cpp:8–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
6
using namespace Ubpa::Utopia;
7
8
void* LuaMemory::Malloc(size_t size) {
9
return malloc(size);
10
}
11
12
void LuaMemory::Free(void* block) {
13
free(block);
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected