diff options
| author | gingerBill <bill@gingerbill.org> | 2024-07-14 11:39:05 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-07-14 11:39:05 +0100 |
| commit | edc793d7c123a38826860ef72684308902a7012c (patch) | |
| tree | 0d6c6c97af7355313e76b3d433d555dfff43ab8d /src/entity.cpp | |
| parent | f98a7b84dfd03bffacc0951209e36e102a6448ca (diff) | |
Add `#no_capture args: ..T` to reuse the backing array stack memory
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 2 |
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, |