- removed UniqueLineToLines because it wasn't used anywhere.

This commit is contained in:
Christoph Oelckers 2018-04-14 21:24:48 +02:00
commit 71c8417578
3 changed files with 1 additions and 7 deletions

View file

@ -1241,10 +1241,7 @@ public:
{
if (!memcmp(t, Array[i], sizeof(T))) return Array[i];
}
T * newo = new T;
*newo = *t;
Array.Push(newo);
Array.Push(new T(*t));
return newo;
}