#include <cstring>
#include <type_traits>
Go to the source code of this file.
|
#define | mrpt_alloca(nBytes) ::malloc(nBytes) |
| In platforms and compilers with support to "alloca", allocate a memory block on the stack; if alloca is not supported, it is emulated as a normal "malloc". More...
|
|
#define | mrpt_alloca_free(mem_block) free(mem_block) |
| This method must be called to "free" each memory block allocated with "system::alloca": If the block was really allocated in the stack, no operation is actually performed, otherwise it will be freed from the heap. More...
|
|