DBG: attempt to undecorate more symbols based on other prefixes
closes #2268
This commit is contained in:
parent
6cab250906
commit
f7f7a2f463
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue