1
0
Fork 0

DBG: attempt to undecorate more symbols based on other prefixes

closes #2268
This commit is contained in:
Duncan Ogilvie 2020-01-08 01:39:23 +01:00
parent 6cab250906
commit f7f7a2f463
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -1026,7 +1026,7 @@ bool PDBDiaFile::convertSymbolInfo(IDiaSymbol* symbol, DiaSymbol_t & symbolInfo,
symbolInfo.name = getSymbolNameString(symbol);
if(context.collectUndecoratedNames && !symbolInfo.name.empty() && symbolInfo.name.at(0) == '?')
if(context.collectUndecoratedNames && !symbolInfo.name.empty() && (symbolInfo.name.at(0) == '?' || symbolInfo.name.at(0) == '_' || symbolInfo.name.at(0) == '@'))
{
undecorateName(symbolInfo.name, symbolInfo.undecoratedName);
}