Displaying 1 result from an estimated 1 matches for "002422".
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...if (t != first+3 && t != last && *t == 'E')
first = t+1;
}
break;
case 'T':
// Invalid mangled name per
// http://sourcerytools.com/pipermail/cxx-abi-dev/2011-August/002422.html
break;
default:
{
// might be named type
const char* t = parse_type(first+1, last, db);
if (t != first+1 && t != last)
{
if (*t != 'E')...