mirror of https://github.com/adamdruppe/arsd.git
deprecation useless
This commit is contained in:
parent
d015e549fb
commit
0c31235bec
28
sqlite.d
28
sqlite.d
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue