1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Added '?' capture, reworked '&' capture, allow 'this' capture

This commit is contained in:
Brian Fiete 2023-03-17 08:38:45 -07:00
parent 7ab6800f40
commit 7f695596b8
5 changed files with 70 additions and 22 deletions

View file

@ -2312,6 +2312,7 @@ public:
enum BfCaptureType
{
BfCaptureType_None,
BfCaptureType_Auto,
BfCaptureType_Copy,
BfCaptureType_Reference,
};