Remove stale comment.
authorChristoph Mallon <christoph.mallon@gmx.de>
Tue, 11 Oct 2011 06:39:56 +0000 (08:39 +0200)
committerChristoph Mallon <christoph.mallon@gmx.de>
Tue, 11 Oct 2011 06:39:56 +0000 (08:39 +0200)
type.c

diff --git a/type.c b/type.c
index 5d82b6a..a0ee6e3 100644 (file)
--- a/type.c
+++ b/type.c
@@ -525,10 +525,7 @@ void print_enum_definition(const enum_t *enume)
                print_string(entry->base.symbol->string);
                if (entry->enum_value.value != NULL) {
                        print_string(" = ");
-
-                       /* skip the implicit cast */
-                       expression_t *expression = entry->enum_value.value;
-                       print_expression(expression);
+                       print_expression(entry->enum_value.value);
                }
                print_string(",\n");
        }