aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-07-14 12:19:47 +0100
committergingerBill <bill@gingerbill.org>2024-07-14 12:19:47 +0100
commit8642d719f0ece3625d535d47b41ff4d35072f47f (patch)
treeaec3708e44e3fe7085dea40b112aa4db08497f31 /src/parser.hpp
parent891cf54b5c56bd31bcfdac14f0b72d489999bffc (diff)
Imply `#no_capture` to all variadic parameters
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 15176f789..451cdf53d 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -330,10 +330,11 @@ enum FieldFlag : u32 {
FieldFlag_subtype = 1<<7,
FieldFlag_by_ptr = 1<<8,
FieldFlag_no_broadcast = 1<<9, // disallow array programming
- FieldFlag_no_capture = 1<<10,
+
+ FieldFlag_no_capture = 1<<11,
// Internal use by the parser only
- FieldFlag_Tags = 1<<11,
+ FieldFlag_Tags = 1<<15,
FieldFlag_Results = 1<<16,