mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 16:31:30 +00:00
[qfcc] Fix some forwarded enum issues
Forwarded enums need the backing type specified (which makes sense).
This commit is contained in:
parent
81349ced5d
commit
e8e2bf7efe
3 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue