mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Fixed double-printing with types derived from typed primitives
This commit is contained in:
parent
1b04880178
commit
7caea60e29
1 changed files with 3 additions and 2 deletions
|
@ -7809,8 +7809,9 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
|||
while (summaryType != NULL)
|
||||
{
|
||||
summaryType->PopulateType();
|
||||
|
||||
if (summaryType->IsTypedPrimitive())
|
||||
|
||||
if ((summaryType->IsTypedPrimitive()) &&
|
||||
((summaryType->mBaseTypes.IsEmpty()) || (!summaryType->mBaseTypes.front()->mBaseType->IsTypedPrimitive())))
|
||||
{
|
||||
if (formatInfo.mTotalSummaryLength + (int)displayString.length() > 255)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue