mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[qfcc] Add an is_auto helper function
It's cleaner than type == &type_auto and will allow me to check that `auto` hasn't been aliased or something like that.
This commit is contained in:
parent
a922088c1c
commit
54231b21ed
2 changed files with 7 additions and 0 deletions
|
@ -238,6 +238,7 @@ const char *type_get_encoding (const type_t *type);
|
|||
#define EV_TYPE(t) bool is_##t (const type_t *type) __attribute__((pure));
|
||||
#include "QF/progs/pr_type_names.h"
|
||||
|
||||
bool is_auto (const type_t *type) __attribute__((pure));
|
||||
bool is_pointer (const type_t *type) __attribute__((pure));
|
||||
bool is_reference (const type_t *type) __attribute__((pure));
|
||||
bool is_enum (const type_t *type) __attribute__((pure));
|
||||
|
|
|
@ -1475,6 +1475,12 @@ bool is_##t (const type_t *type) \
|
|||
}
|
||||
#include "QF/progs/pr_type_names.h"
|
||||
|
||||
bool
|
||||
is_auto (const type_t *type)
|
||||
{
|
||||
return type == &type_auto;
|
||||
}
|
||||
|
||||
bool
|
||||
is_pointer (const type_t *type)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue