فهرست منبع

Fixed CPP header codegen

Nikita Tsukanov 5 سال پیش
والد
کامیت
1428badc6b
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      src/tools/MicroComGenerator/CppGen.cs

+ 4 - 1
src/tools/MicroComGenerator/CppGen.cs

@@ -14,7 +14,10 @@ namespace MicroComGenerator
                 name = "unsigned char";
             else if(name == "uint")
                 name = "unsigned int";
-            return name + new string('*', type.PointerLevel);
+
+            type = type.Clone();
+            type.Name = name;
+            return type.Format();
         }
         
         public static string GenerateCpp(AstIdlNode idl)