aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-15 12:56:59 +0100
committergingerBill <bill@gingerbill.org>2021-08-15 12:56:59 +0100
commit7bbc9a4634c2a4f1f3d4e932571883dce55c21fd (patch)
tree5fd7a6224876544877c62d4a88725e756d13874b /src/parser.hpp
parent1cd3b693aeb19a952c22e2aec69fd00025b99fc5 (diff)
Add `#any_int` directive to replace `auto_cast` uses on parameters.
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 397b43f44..7e86297cc 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -275,6 +275,7 @@ enum FieldFlag {
FieldFlag_c_vararg = 1<<3,
FieldFlag_auto_cast = 1<<4,
FieldFlag_const = 1<<5,
+ FieldFlag_any_int = 1<<6,
FieldFlag_Tags = 1<<10,