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

Initial const eval feature release

This commit is contained in:
Brian Fiete 2020-12-23 08:53:38 -08:00
parent be929c3626
commit ff1f8aff3f
27 changed files with 887 additions and 178 deletions

View file

@ -733,6 +733,7 @@ public:
bool mIsNoSplat;
bool mIsNoReflect;
bool mIsSkipCall;
bool mIsConstEval;
bool mIsOperator;
bool mIsExtern;
bool mIsNoDiscard;
@ -761,6 +762,7 @@ public:
mIsNoSplat = false;
mIsNoReflect = false;
mIsSkipCall = false;
mIsConstEval = false;
mIsOperator = false;
mIsExtern = false;
mIsNoDiscard = false;