Skip to content

Commit 052b62a

Browse files
authored
c++/winrt signature for UInt32 is now uint32_t (#508)
https://ceapex.visualstudio.com/Engineering/_workitems/edit/242502
1 parent 700869d commit 052b62a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mdoc/Mono.Documentation/Updater/Formatters/CppFormatters/CppWinRtFullMemberFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected override string GetCppType(string t)
6060
case "System.Int32": typeToCompare = "int"; break;
6161
case "System.Int64": typeToCompare = "long"; break;
6262
case "System.UInt16": typeToCompare = "unsigned short"; break;
63-
case "System.UInt32": typeToCompare = "unsigned int"; break;
63+
case "System.UInt32": typeToCompare = "uint32_t"; break;
6464
case "System.UInt64": typeToCompare = "uint64_t"; break;
6565

6666
case "System.Single": typeToCompare = "float"; break;

0 commit comments

Comments
 (0)