[qfcc] Fix some forwarded enum issues

Forwarded enums need the backing type specified (which makes sense).
This commit is contained in:
Bill Currie 2025-02-11 12:49:52 +09:00
parent 81349ced5d
commit e8e2bf7efe
3 changed files with 3 additions and 3 deletions

View file

@ -213,7 +213,7 @@ const type_t *parse_params (const type_t *return_type, param_t *params);
param_t *check_params (param_t *params);
enum storage_class_e;
enum storage_class_e : unsigned;
struct defspace_s;
int value_too_large (const type_t *val_type) __attribute__((pure));
function_t *make_function (symbol_t *sym, const char *nice_name,

View file

@ -32,7 +32,7 @@
#define __struct_h
struct def_s;
enum storage_class_e;
enum storage_class_e : unsigned;
struct symbol_s;
struct symtab_s;
typedef struct type_s type_t;

View file

@ -34,7 +34,7 @@
#include "expr.h"
struct defspace_s;
enum storage_class_e;
enum storage_class_e : unsigned;
/** \defgroup qfcc_symtab Symbol Table Management
\ingroup qfcc