added Pair and HashTable

This commit is contained in:
2015-02-04 13:43:01 +00:00
parent 67a5f4f5f5
commit 6e92bb2985
9 changed files with 700 additions and 45 deletions

View File

@ -80,10 +80,7 @@ void* HeapMmgr::reallocMem (void* ptr, qse_size_t n)
void HeapMmgr::freeMem (void* ptr)
{
if (this->xma)
{
qse_xma_free (this->xma, ptr);
}
if (this->xma) qse_xma_free (this->xma, ptr);
}
/////////////////////////////////