mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 17:01:11 +00:00
[qfcc] Move countof macro to qtypes
It makes it more accessible and easy to remove when it (or equivalent) becomes standard in C.
This commit is contained in:
parent
0ecd8f06bd
commit
1f0d7f249c
2 changed files with 3 additions and 2 deletions
|
@ -42,6 +42,9 @@
|
|||
# undef msg_t
|
||||
#endif
|
||||
|
||||
#undef countof
|
||||
#define countof(x) (sizeof(x)/sizeof(x[0]))
|
||||
|
||||
#undef field_offset
|
||||
#define field_offset(type,field) ((size_t)&(((type *)0)->field))
|
||||
|
||||
|
|
|
@ -693,8 +693,6 @@ static expr_type_t bool_ops[] = {
|
|||
{}
|
||||
};
|
||||
|
||||
#define countof(x) (sizeof(x)/sizeof(x[0]))
|
||||
|
||||
static expr_type_t *expr_types[] = {
|
||||
[QC_EQ] = equality_ops,
|
||||
[QC_NE] = equality_ops,
|
||||
|
|
Loading…
Reference in a new issue