Compare commits
2 commits
4831f2e03d
...
9c6781c458
Author | SHA1 | Date | |
---|---|---|---|
9c6781c458 | |||
|
33139510b9 |
1 changed files with 2 additions and 1 deletions
|
@ -563,11 +563,12 @@ Main(Array * args)
|
|||
if (IsDelimited(fieldType, '{', '}') ||
|
||||
IsDelimited(fieldType, '[', ']'))
|
||||
{
|
||||
char end = fieldType[strlen(fieldType) - 1];
|
||||
fieldType[strlen(fieldType) - 1] = '\0';
|
||||
|
||||
StreamPrintf(headerFile, " %s /* of %s */ %s;\n", cType, fieldType + 1, field);
|
||||
|
||||
fieldType[strlen(fieldType)] = '}';
|
||||
fieldType[strlen(fieldType)] = end;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue