X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=type_t.h;h=67a23b935417dcfdd24d22d94c74e315f8d0b104;hb=ae40d62f736098a12e3e31ab2d5cfb24f2467742;hp=b47f7b5ec4e0261d9a337c8193ff78cb21f0996e;hpb=8240dbd8abce1f5d706ac6e4fa29d8ab82e2db1a;p=cparser diff --git a/type_t.h b/type_t.h index b47f7b5..67a23b9 100644 --- a/type_t.h +++ b/type_t.h @@ -60,10 +60,10 @@ typedef enum { } atomic_type_type_t; typedef enum { + TYPE_QUALIFIER_NONE = 0, TYPE_QUALIFIER_CONST = 1 << 0, TYPE_QUALIFIER_RESTRICT = 1 << 1, TYPE_QUALIFIER_VOLATILE = 1 << 2, - TYPE_QUALIFIER_INLINE = 1 << 3, } type_qualifier_t; struct type_t { @@ -112,7 +112,7 @@ struct function_type_t { struct compound_type_t { type_t type; - /** the declaration of the compound type, it's context field + /** the declaration of the compound type, its context field * contains the compound entries. */ declaration_t *declaration; };