C++ Reverse Engineering

Support

Reverse engineering fails when C++ typedefs are in the file.

Example:

typedef struct MY_STRUCT

{

string strValue;

int nVal;

} MY_STRUCT;

Changing to a class works:

class MY_STRUCT

{

string strValue;

int nVal;

};

6 May 2020 16:22:27 Michael Denczek

Add Comment

Dusan Rodina - softwareideas.net 6 May 2020 16:27:49

Thank you for providing a detailed description of the problem. The issue will be fixed soon.

Dusan Rodina - softwareideas.net 12 May 2020 8:09:51

Please try the new version 12.62. The problem should be solved.