mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
More SIMD work
This commit is contained in:
parent
b57cbe2d69
commit
ca4b383339
19 changed files with 695 additions and 76 deletions
|
@ -5394,6 +5394,7 @@ String WinDebugger::GetMemberList(DbgType* dbgType, const StringImpl& expr, bool
|
|||
if (member->mName != NULL)
|
||||
{
|
||||
if ((member->mName[0] == '?') ||
|
||||
(member->mName[0] == '$') ||
|
||||
(strncmp(member->mName, "_vptr$", 6) == 0))
|
||||
ignoreMember = true;
|
||||
}
|
||||
|
@ -7980,7 +7981,10 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c
|
|||
}
|
||||
|
||||
if (member->mName != NULL)
|
||||
{
|
||||
{
|
||||
if (member->mName[0] == '$')
|
||||
continue;
|
||||
|
||||
if (!isdigit(*member->mName))
|
||||
{
|
||||
if (memberIdx != 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue