Add suggestions when trying to take the address the a value from a for/switch statement

This commit is contained in:
gingerBill
2021-08-23 11:50:02 +01:00
parent 276d4b8f0d
commit cba0bd30f5
3 changed files with 21 additions and 5 deletions

View File

@@ -69,6 +69,9 @@ enum EntityFlag : u64 {
EntityFlag_Lazy = 1ull<<27, // Lazily type checked
EntityFlag_ForValue = 1ull<<28,
EntityFlag_SwitchValue = 1ull<<29,
EntityFlag_Test = 1ull<<30,
EntityFlag_Overridden = 1ull<<63,