1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 17:28:00 +02:00

Int64 mFieldData.mData fixes for 32-bit builds

This commit is contained in:
Brian Fiete 2021-12-29 11:24:14 -05:00
parent 48640bcf77
commit 7e315e49d2
2 changed files with 5 additions and 6 deletions

View file

@ -16,8 +16,7 @@ namespace System
return;
}
}
((int32)iVal).ToString(strBuffer);
iVal.ToString(strBuffer);
}
public static Result<T> Parse<T>(StringView str, bool ignoreCase = false) where T : enum