| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
This is useful in case you don't want to use a specific memory manager.
Anywhere you've included a feature, which uses memory manager, you can
always provide M_STD without having to create (and manage) your own
value.
|
| |
|
|
|
| |
Functions like M_std, but also tracks allocated and freed memory,
allowing all allocated memory to be destroyed.
|
| | |
|
|
|
The idea is to provide a universal memory management "API", through
which you allocate and deallocate. This allows our implementations (for
String and Vector) to be more generic.
It does also allow usage of different allocators depending on situation.
|