remove wrong assert
authorMatthias Braun <matze@braunis.de>
Fri, 12 Dec 2008 12:03:46 +0000 (12:03 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 12 Dec 2008 12:03:46 +0000 (12:03 +0000)
[r24563]

type.c

diff --git a/type.c b/type.c
index 5134fd5..08c029a 100644 (file)
--- a/type.c
+++ b/type.c
@@ -621,7 +621,6 @@ static void print_typeof_type_pre(const typeof_type_t *const type)
 {
        fputs("typeof(", out);
        if (type->expression != NULL) {
-               assert(type->typeof_type == NULL);
                print_expression(type->expression);
        } else {
                print_type(type->typeof_type);