support for writing functions and function types in fluffy export
[cparser] / token.c
diff --git a/token.c b/token.c
index f9b5336..1496f35 100644 (file)
--- a/token.c
+++ b/token.c
@@ -81,9 +81,6 @@ void print_token(FILE *f, const token_t *token)
        case T_IDENTIFIER:
                fprintf(f, "symbol '%s'", token->v.symbol->string);
                break;
-       case T_TYPENAME:
-               fprintf(f, "typename '%s'", token->v.symbol->string);
-               break;
        case T_INTEGER:
                fprintf(f, "integer number %d", token->v.intvalue);
                break;