1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-01 21:03:38 +02:00

Fixed DynamicEnum AddFlag going into an infinite loop

This commit is contained in:
Ell 2021-09-22 20:33:11 +02:00
parent 1bbb12a1fa
commit 81dcbfb9a1
2 changed files with 4 additions and 1 deletions

View file

@ -51,6 +51,9 @@ Improvements
- Improved CopyExtensions construction speed - Improved CopyExtensions construction speed
- Improved DynamicEnum caching - Improved DynamicEnum caching
Fixes
- Fixed DynamicEnum AddFlag going into an infinite loop
## 5.0.0 ## 5.0.0
### MLEM ### MLEM
Additions Additions

View file

@ -148,7 +148,7 @@ namespace MLEM.Data {
public static T AddFlag<T>(string name) where T : DynamicEnum { public static T AddFlag<T>(string name) where T : DynamicEnum {
BigInteger value = 0; BigInteger value = 0;
while (GetStorage(typeof(T)).Values.ContainsKey(value)) while (GetStorage(typeof(T)).Values.ContainsKey(value))
value <<= 1; value = value != 0 ? value << 1 : 1;
return Add<T>(name, value); return Add<T>(name, value);
} }