winedump: Demangle std::nullptr_t datatype.

Signed-off-by: Eric Pouech <epouech@codeweavers.com>
This commit is contained in:
Eric Pouech 2023-10-30 18:38:07 +01:00 committed by Alexandre Julliard
parent 2464b47d78
commit 3a95341ef6

View file

@ -1050,6 +1050,11 @@ static BOOL demangle_datatype(struct parsed_symbol* sym, struct datatype_t* ct,
sym->current++;
if (!get_qualified_type(ct, sym, '$', flags)) goto done;
}
else if (*sym->current == 'T')
{
sym->current++;
ct->left = str_printf(sym, "std::nullptr_t");
}
break;
}
break;