Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CppAst.Tests/TestTypeAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void TestSimple()

using Type_bool = bool;

using Type_wchar = wchar_t ;
using Type_wchar_t = wchar_t ;

using Type_char = char;
using Type_unsigned_char = unsigned char;
Expand Down
2 changes: 1 addition & 1 deletion src/CppAst.Tests/TestTypedefs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void TestSimple()

typedef bool Type_bool;

typedef wchar_t Type_wchar;
typedef wchar_t Type_wchar_t;

typedef char Type_char;
typedef unsigned char Type_unsigned_char;
Expand Down
2 changes: 1 addition & 1 deletion src/CppAst/CppPrimitiveType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public override string ToString()
case CppPrimitiveKind.Void:
return "void";
case CppPrimitiveKind.WChar:
return "wchar";
return "wchar_t";
case CppPrimitiveKind.Char:
return "char";
case CppPrimitiveKind.Short:
Expand Down
Loading