Skip to content

Commit a92d291

Browse files
xeznogithub-actions[bot]
authored andcommitted
Apply formatting fixes
1 parent 2837fe0 commit a92d291

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

Source/MochaTool.InteropGen/Utils.cs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,31 @@ internal static class Utils
1515
{
1616
// Native type Managed type
1717
//-------------------------------
18-
{ "void", "void" },
19-
{ "uint32_t", "uint" },
20-
{ "int32_t", "int" },
21-
{ "size_t", "uint" },
22-
23-
{ "char**", "ref string" },
24-
{ "char **", "ref string" },
25-
{ "char*", "string" },
26-
{ "char *", "string" },
27-
{ "void*", "IntPtr" },
28-
{ "void *", "IntPtr" },
18+
{ "void", "void" },
19+
{ "uint32_t", "uint" },
20+
{ "int32_t", "int" },
21+
{ "size_t", "uint" },
22+
23+
{ "char**", "ref string" },
24+
{ "char **", "ref string" },
25+
{ "char*", "string" },
26+
{ "char *", "string" },
27+
{ "void*", "IntPtr" },
28+
{ "void *", "IntPtr" },
2929

3030
// STL
31-
{ "std::string", "/* UNSUPPORTED */ string" },
31+
{ "std::string", "/* UNSUPPORTED */ string" },
3232

3333
// GLM
34-
{ "glm::vec2", "Vector2" },
35-
{ "glm::vec3", "Vector3" },
36-
{ "glm::mat4", "Matrix4x4" },
37-
{ "glm::quat", "Rotation" },
34+
{ "glm::vec2", "Vector2" },
35+
{ "glm::vec3", "Vector3" },
36+
{ "glm::mat4", "Matrix4x4" },
37+
{ "glm::quat", "Rotation" },
3838

3939
// Custom
40-
{ "Quaternion", "Rotation" },
41-
{ "InteropStruct", "IInteropArray" },
42-
{ "Handle", "uint" }
40+
{ "Quaternion", "Rotation" },
41+
{ "InteropStruct", "IInteropArray" },
42+
{ "Handle", "uint" }
4343
};
4444

4545
/// <summary>

0 commit comments

Comments
 (0)