Commit 64c6deda authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Add support for demangling char{8,16,32}_t types.

parent 00544351
......@@ -772,6 +772,9 @@ static const char* get_extended_type(char c)
case 'L': type_string = "__int128"; break;
case 'M': type_string = "unsigned __int128"; break;
case 'N': type_string = "bool"; break;
case 'Q': type_string = "char8_t"; break;
case 'S': type_string = "char16_t"; break;
case 'U': type_string = "char32_t"; break;
case 'W': type_string = "wchar_t"; break;
default: type_string = NULL; break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment