aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-07-14 11:39:05 +0100
committergingerBill <bill@gingerbill.org>2024-07-14 11:39:05 +0100
commitedc793d7c123a38826860ef72684308902a7012c (patch)
tree0d6c6c97af7355313e76b3d433d555dfff43ab8d /src/entity.cpp
parentf98a7b84dfd03bffacc0951209e36e102a6448ca (diff)
Add `#no_capture args: ..T` to reuse the backing array stack memory
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index 41d84e0f7..db6ffdd52 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -45,7 +45,7 @@ enum EntityFlag : u64 {
EntityFlag_Value = 1ull<<11,
EntityFlag_BitFieldField = 1ull<<12,
-
+ EntityFlag_NoCapture = 1ull<<13, // #no_capture
EntityFlag_PolyConst = 1ull<<15,
EntityFlag_NotExported = 1ull<<16,