Piotr Caban (@piotr) commented about dlls/msvcrt/undname.c:
case 'V': function_name = "operator delete[]"; break; case 'X': function_name = "`placement delete closure'"; break; case 'Y': function_name = "`placement delete[] closure'"; break;
case '_':
switch (*++sym->current)
{
/* likely many others missing here */
case 'K':
sym->current++;
function_name = str_printf(sym, "operator \"\" %s", get_literal_string(sym));
--sym->current;
break;
default:
ERR("Unknown operator: __%c\n", *sym->current);
return FALSE;
Could you please remove the "likely many others missing here" comment and change ERR to FIXME?