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

Improved minidump debugging

This commit is contained in:
Brian Fiete 2020-10-12 10:12:18 -07:00
parent 60b162ba90
commit 9332693132
4 changed files with 11 additions and 3 deletions

View file

@ -490,7 +490,11 @@ public:
class BfMemberDef
{
public:
#ifdef _DEBUG
StringT<48> mName;
#else
String mName;
#endif
BfTypeDef* mDeclaringType;
BfProtection mProtection;
bool mIsStatic;