Avoid C++ style comments

protoize chokes on them
This commit is contained in:
Peter De Wachter 2016-01-23 17:38:30 +01:00
parent c594490db9
commit ad1aa82bcd
2 changed files with 2 additions and 2 deletions

View File

@ -443,7 +443,7 @@ freeMacroStatement(macroStatement)
void void
freeMdefineStatement(mdefineStatement) freeMdefineStatement(mdefineStatement)
defineStatementBodyType *mdefineStatement; // MIST: shouldn't this be "mdefineStatementBodyType"? defineStatementBodyType *mdefineStatement; /* MIST: shouldn't this be "mdefineStatementBodyType"? */
{ {
valueType *freeDefineExpression(); valueType *freeDefineExpression();

View File

@ -444,7 +444,7 @@ typedef union expressionTermBodyUnion {
valueType *valueUnion; valueType *valueUnion;
symbolTableEntryType *symbolTableUnion; symbolTableEntryType *symbolTableUnion;
conditionType conditionTypeUnion; conditionType conditionTypeUnion;
void *expressionUnion; // this should be expressionTermType, but there's a cycle void *expressionUnion; /* this should be expressionTermType, but there's a cycle */
} expressionTermBodyType; } expressionTermBodyType;
typedef struct expressionTermStruct { typedef struct expressionTermStruct {