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
freeMdefineStatement(mdefineStatement)
defineStatementBodyType *mdefineStatement; // MIST: shouldn't this be "mdefineStatementBodyType"?
defineStatementBodyType *mdefineStatement; /* MIST: shouldn't this be "mdefineStatementBodyType"? */
{
valueType *freeDefineExpression();

View File

@ -444,7 +444,7 @@ typedef union expressionTermBodyUnion {
valueType *valueUnion;
symbolTableEntryType *symbolTableUnion;
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;
typedef struct expressionTermStruct {