mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[qfcc] Mark is_auto as const
All it checks is the addres, so yeah. (I guess it's lto vs no lto)
This commit is contained in:
parent
fb7025dbd3
commit
74f973cddc
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +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_auto (const type_t *type) __attribute__((const));
|
||||
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));
|
||||
|
|
Loading…
Reference in a new issue