- whitespace cleanup, updated from Raze.
This commit is contained in:
parent
3b879c5656
commit
e60e6967c0
182 changed files with 835 additions and 824 deletions
|
|
@ -267,7 +267,7 @@ DObject::~DObject ()
|
|||
Release();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (nullptr != type)
|
||||
{
|
||||
type->DestroySpecials(this);
|
||||
|
|
|
|||
|
|
@ -158,6 +158,10 @@ namespace GC
|
|||
{
|
||||
MarkArray((DObject **)(obj), count);
|
||||
}
|
||||
template<class T> void MarkArray(TObjPtr<T>* obj, size_t count)
|
||||
{
|
||||
MarkArray((DObject**)(obj), count);
|
||||
}
|
||||
template<class T> void MarkArray(TArray<T> &arr)
|
||||
{
|
||||
MarkArray(&arr[0], arr.Size());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue