1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 00:20:25 +02:00

Fixed some issues with new/delete generic constraints

This commit is contained in:
Brian Fiete 2020-02-20 11:57:25 -08:00
parent a781f29c31
commit c2c2c24ac8
9 changed files with 99 additions and 26 deletions

View file

@ -260,7 +260,7 @@ namespace System.Collections.Generic
protected void Free(T* val)
{
delete val;
delete (void*)val;
}
/*protected T[] Alloc(int size)
{