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:
parent
b16ff3048a
commit
13ca5c174d
4 changed files with 41 additions and 71 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue