Skip to content

Commit

Permalink
support char16_t & char32_t
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenny committed Jan 10, 2019
1 parent 93f7089 commit 4ecd6c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/PDB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,8 @@ BasicTypeMapElement BasicTypeMapMSVC[] = {
{ btNoType, 0, "btNoType", nullptr },
{ btVoid, 0, "btVoid", "void" },
{ btChar, 1, "btChar", "char" },
{ btChar16, 2, "btChar16", "char16_t" },
{ btChar32, 4, "btChar32", "char32_t" },
{ btWChar, 2, "btWChar", "wchar_t" },
{ btInt, 1, "btInt", "char" },
{ btInt, 2, "btInt", "short" },
Expand Down Expand Up @@ -1007,6 +1009,8 @@ BasicTypeMapElement BasicTypeMapStdInt[] = {
{ btNoType, 0, "btNoType", nullptr },
{ btVoid, 0, "btVoid", "void" },
{ btChar, 1, "btChar", "char" },
{ btChar16, 2, "btChar16", "char16_t" },
{ btChar32, 4, "btChar32", "char32_t" },
{ btWChar, 2, "btWChar", "wchar_t" },
{ btInt, 1, "btInt", "int8_t" },
{ btInt, 2, "btInt", "int16_t" },
Expand Down

0 comments on commit 4ecd6c0

Please sign in to comment.