Index: src/CodeGen/CodeGenerator.cc
===================================================================
--- src/CodeGen/CodeGenerator.cc	(revision 1f7dc61b5b760185c1c66c9315fb7f309173dba5)
+++ src/CodeGen/CodeGenerator.cc	(revision f135b50a1177372bc7dd5a2dcf75591c4b6ee098)
@@ -274,5 +274,5 @@
 	void CodeGenerator::postvisit( EnumDecl * enumDecl ) {
 		extension( enumDecl );
-		output << "enum ";
+		output << "enum /* Marker CodeGenerator::EnumDecl */ ";
 		genAttributes( enumDecl->get_attributes() );
 
@@ -291,4 +291,5 @@
 				if ( obj->get_init() ) {
 					output << " = ";
+					// In progress
 					obj->get_init()->accept( *visitor );
 				} // if
Index: src/CodeGen/GenType.cc
===================================================================
--- src/CodeGen/GenType.cc	(revision 1f7dc61b5b760185c1c66c9315fb7f309173dba5)
+++ src/CodeGen/GenType.cc	(revision f135b50a1177372bc7dd5a2dcf75591c4b6ee098)
@@ -254,5 +254,5 @@
 	void GenType::postvisit( EnumInstType * enumInst ) {
 		typeString = enumInst->name + " " + typeString;
-		if ( options.genC ) typeString = "enum " + typeString;
+		if ( options.genC ) typeString = "enum /* Marker GenType::EnumInstType */ " + typeString;
 		handleQualifiers( enumInst );
 	}
