globalmapper.free_void

globalmapper.free_void(int pointer) void[source]

Frees the memory at pointer that has been allocated by malloc_void. The value of pointer will remain unchanged. This is essentially a duplicate of the C++ free() method and not something standard for Python, so it should only be used on memory that you have allocated manually.

Parameters:

pointer (int) – The memory address of the start of some allocated space

Returns:

Nothing is returned

Return type:

void