From ad1aa82bcd880f3a1cf37b8179261a7fea55ac88 Mon Sep 17 00:00:00 2001 From: Peter De Wachter Date: Sat, 23 Jan 2016 17:38:30 +0100 Subject: [PATCH] Avoid C++ style comments protoize chokes on them --- garbage.c | 2 +- macrossTypes.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/garbage.c b/garbage.c index 74f0654..2660acb 100644 --- a/garbage.c +++ b/garbage.c @@ -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(); diff --git a/macrossTypes.h b/macrossTypes.h index 22a85cf..e145054 100644 --- a/macrossTypes.h +++ b/macrossTypes.h @@ -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 {