deprecation useless

This commit is contained in:
Adam D. Ruppe 2018-09-06 19:54:19 -04:00
parent d015e549fb
commit 0c31235bec
1 changed files with 0 additions and 28 deletions

View File

@ -557,34 +557,6 @@ template extract(A, T, R...){
bool executed;
new(size_t sz)
{
void* p;
p = core.stdc.stdlib.malloc(sz);
if (!p)
throw new OutOfMemoryError(__FILE__, __LINE__);
GC.addRange(p, sz);
return p;
}
delete(void* p)
{
if (p)
{ GC.removeRange(p);
core.stdc.stdlib.free(p);
}
}
}