We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
the current version is not compiling with GCC 11. The following patch can mitigate the issue:
diff --git a/src/HexRaysCodeXplorer/TypeReconstructor.cpp b/src/HexRaysCodeXplorer/TypeReconstructor.cpp index 4cc71f8..f84afc3 100644 --- a/src/HexRaysCodeXplorer/TypeReconstructor.cpp +++ b/src/HexRaysCodeXplorer/TypeReconstructor.cpp @@ -28,6 +28,7 @@ #include "Debug.h" #include "Utility.h" +#include <memory> #if !defined (__LINUX__) && !defined (__MAC__) #include <tchar.h> @@ -742,4 +743,4 @@ bool idaapi reconstruct_type(const reconstruct_type_params_t & params) } return reconstruct_type(cfunc, params.var_name, params.type_name); -} \ No newline at end of file +}
The file TypeReconstructor.cpp is missing the import #include <memory>.
TypeReconstructor.cpp
#include <memory>
The text was updated successfully, but these errors were encountered:
Can confirm the patch* also works on IDA Pro 8.3 / SDK 8.3
Sorry, something went wrong.
No branches or pull requests
Hey,
the current version is not compiling with GCC 11. The following patch can mitigate the issue:
The file
TypeReconstructor.cpp
is missing the import#include <memory>
.The text was updated successfully, but these errors were encountered: