summaryrefslogtreecommitdiff
path: root/src/analysis/type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/type.h')
-rw-r--r--src/analysis/type.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/analysis/type.h b/src/analysis/type.h
index 5ce94ab..db17bc8 100644
--- a/src/analysis/type.h
+++ b/src/analysis/type.h
@@ -57,6 +57,7 @@ typedef struct _GDataTypeClass GDataTypeClass;
/* Qualificatifs de variables */
typedef enum _TypeQualifier
{
+ TQF_NONE = (0 << 0), /* NĂ©ant */
TQF_RESTRICT = (1 << 0), /* restrict (C99) */
TQF_VOLATILE = (1 << 1), /* volatile */
TQF_CONST = (1 << 2) /* const */