[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:
Bill Currie 2025-01-21 11:08:35 +09:00
parent fb7025dbd3
commit 74f973cddc

View file

@ -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));