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

Trimmed some debug memory

This commit is contained in:
Brian Fiete 2020-03-20 09:23:38 -07:00
parent b16ff3048a
commit 13ca5c174d
4 changed files with 41 additions and 71 deletions

View file

@ -955,16 +955,12 @@ void DbgSrcFile::GetHash(String& outStr)
DbgType::DbgType()
{
mTypeIdx = -1;
//mHash = 0;
mTypeIdx = -1;
mIsDeclaration = false;
mParent = NULL;
//mName = NULL;
mParent = NULL;
mTypeName = NULL;
mTypeCode = DbgType_Null;
mSize = 0;
//mArraySize = 0;
mDeclLine = 0;
mSize = 0;
mPtrType = NULL;
mTypeParam = NULL;
mBlockParam = NULL;
@ -1833,6 +1829,7 @@ void DbgType::ToString(StringImpl& str, DbgLanguage language, bool allowDirectBf
str += " ";
mTypeParam->ToString(str, language, allowDirectBfObject, internalName);
}
return;
}
if (mTypeParam == NULL)
{