From c50923fa6fee5d61b9684e04bd12d302526ed882 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 8 Jul 2002 05:07:18 +0000 Subject: [PATCH] expr_t forward declaration fix --- tools/qfcc/include/struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/include/struct.h b/tools/qfcc/include/struct.h index 6de7f3d72..2c5b2a5f1 100644 --- a/tools/qfcc/include/struct.h +++ b/tools/qfcc/include/struct.h @@ -58,7 +58,7 @@ void copy_struct_fields (struct type_s *dst, struct type_s *src); int emit_struct (struct type_s *strct, const char *name); void process_enum (struct expr_s *enm); -expr_t *get_enum (const char *name); +struct expr_s *get_enum (const char *name); void clear_structs (void); void clear_enums (void);