@@ -624,7 +624,7 @@ private void Parse(StreamReader reader)
624
624
{
625
625
var typeName = xTypedef . AttributeValue ( "name" ) ;
626
626
xStruct . SetAttributeValue ( "name" , typeName ) ;
627
- Logger . Message ( "Use typedef to rename [{0}] to [{1}]" , structName , typeName ) ;
627
+ // Logger.Message("Use typedef to rename [{0}] to [{1}]", structName, typeName);
628
628
}
629
629
break ;
630
630
}
@@ -1527,10 +1527,12 @@ private void ApplyDocumentation()
1527
1527
1528
1528
if ( cppEnum . IsEmpty )
1529
1529
continue ;
1530
-
1531
- if ( cppEnum . Items . Count != docItem . Items . Count )
1532
- Logger . Warning ( "Warning Invalid number enum items in documentation for Enum {0}" ,
1533
- cppEnum . Name ) ;
1530
+
1531
+ if ( cppEnum . Items . Count != docItem . Items . Count )
1532
+ {
1533
+ //Logger.Warning("Warning Invalid number enum items in documentation for Enum {0}",
1534
+ // cppEnum.Name);
1535
+ }
1534
1536
int count = Math . Min ( cppEnum . Items . Count , docItem . Items . Count ) ;
1535
1537
int i = 0 ;
1536
1538
foreach ( CppEnumItem cppEnumItem in cppEnum . EnumItems )
@@ -1563,9 +1565,11 @@ private void ApplyDocumentation()
1563
1565
1564
1566
if ( cppStruct . IsEmpty )
1565
1567
continue ;
1566
-
1567
- if ( cppStruct . Items . Count != docItem . Items . Count )
1568
- Logger . Warning ( "Invalid number of fields in documentation for Struct {0}" , cppStruct . Name ) ;
1568
+
1569
+ if ( cppStruct . Items . Count != docItem . Items . Count )
1570
+ {
1571
+ //Logger.Warning("Invalid number of fields in documentation for Struct {0}", cppStruct.Name);
1572
+ }
1569
1573
int count = Math . Min ( cppStruct . Items . Count , docItem . Items . Count ) ;
1570
1574
int i = 0 ;
1571
1575
foreach ( CppField cppField in cppStruct . Fields )
@@ -1610,10 +1614,12 @@ private void ApplyDocumentation()
1610
1614
1611
1615
if ( cppMethod . IsEmpty )
1612
1616
continue ;
1613
-
1614
- if ( cppMethod . Items . Count != methodDocItem . Items . Count )
1615
- Logger . Warning ( "Invalid number of documentation for Parameters for method {0}" ,
1616
- methodName ) ;
1617
+
1618
+ if ( cppMethod . Items . Count != methodDocItem . Items . Count )
1619
+ {
1620
+ //Logger.Warning("Invalid number of documentation for Parameters for method {0}",
1621
+ // methodName);
1622
+ }
1617
1623
int count = Math . Min ( cppMethod . Items . Count , methodDocItem . Items . Count ) ;
1618
1624
int i = 0 ;
1619
1625
foreach ( CppParameter cppParameter in cppMethod . Parameters )
@@ -1649,9 +1655,11 @@ private void ApplyDocumentation()
1649
1655
if ( cppFunction . IsEmpty )
1650
1656
continue ;
1651
1657
1652
- if ( cppFunction . Items . Count != docItem . Items . Count )
1653
- Logger . Warning ( "Invalid number of documentation for Parameters for Function {0}" ,
1654
- cppFunction . Name ) ;
1658
+ if ( cppFunction . Items . Count != docItem . Items . Count )
1659
+ {
1660
+ //Logger.Warning("Invalid number of documentation for Parameters for Function {0}",
1661
+ // cppFunction.Name);
1662
+ }
1655
1663
int count = Math . Min ( cppFunction . Items . Count , docItem . Items . Count ) ;
1656
1664
int i = 0 ;
1657
1665
foreach ( CppParameter cppParameter in cppFunction . Parameters )
0 commit comments