aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-07-01 01:51:42 -0700
committerMichael Forney <mforney@mforney.org>2021-07-01 01:52:13 -0700
commitb4f89ba90b6ca3233cc80aef9d42055266fac8df (patch)
tree97cacdf57fd04ae584578ece56ec9c65383977dc /cc.h
parenteb4320fcc6caf885038fe8b7b7d33ed87eb56608 (diff)
decl: Check that the flexible array member (if present) is last
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc.h b/cc.h
index 774c951..87d4460 100644
--- a/cc.h
+++ b/cc.h
@@ -209,7 +209,7 @@ struct type {
};
/* qualifiers of the base type */
enum typequal qual;
- _Bool incomplete;
+ _Bool incomplete, flexible;
union {
struct {
_Bool issigned, iscomplex;