aboutsummaryrefslogtreecommitdiffstats
path: root/src/analyse.h
diff options
context:
space:
mode:
authorkatherine <shmibs@airen-no-jikken.icu>2019-05-27 16:29:08 -0700
committerkatherine <shmibs@airen-no-jikken.icu>2019-05-27 16:29:08 -0700
commit31423d1ce9d902b988c9b38f996718c7095d4315 (patch)
treed247172e33dc04f194456ba2498287185b5528fb /src/analyse.h
parent79985ce2ecc8630a2c1ca48a8eef61e3a69c3fdd (diff)
downloadconfconf-31423d1ce9d902b988c9b38f996718c7095d4315.tar.gz
implement hash parsing generation
Diffstat (limited to 'src/analyse.h')
-rw-r--r--src/analyse.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/analyse.h b/src/analyse.h
index 19f1b96..77594c2 100644
--- a/src/analyse.h
+++ b/src/analyse.h
@@ -18,6 +18,8 @@ struct analyse_tree_s {
};
struct analyse_result_s {
+ bool uses_array;
+ bool uses_hash;
bool uses_bool;
bool uses_string;
bool uses_id;
@@ -30,6 +32,7 @@ struct analyse_result_s {
bool uses_float;
bool uses_double;
bool uses_doublel;
+ bool hash_types[PARSE_TYPE_ARRAY_BOOL];
struct analyse_tree_s deftype_tree;
struct analyse_tree_s var_tree;
};