http://bugs.winehq.org/show_bug.cgi?id=34503
Bug #: 34503 Summary: __unDName doesn't support flag UNDNAME_NO_THISTYPE Product: Wine Version: 1.7.1 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: msvcrt AssignedTo: wine-bugs@winehq.org ReportedBy: info@vmpsoft.com Classification: Unclassified
Here is my version:
static BOOL handle_method(struct parsed_symbol* sym, BOOL cast_op) {
...
const char *ptr_modif; /* Implicit 'this' pointer */ /* If there is an implicit this pointer, const modifier follows */ if (!get_modifier(sym, &modifier, &ptr_modif)) goto done; if (sym->flags & UNDNAME_NO_THISTYPE) modifier = NULL; else if (modifier || ptr_modif) modifier = str_printf(sym, "%s %s", modifier, ptr_modif); }
Please check it