diff --git a/src/CppParser/AST.cpp b/src/CppParser/AST.cpp index 809d339d..f603d631 100644 --- a/src/CppParser/AST.cpp +++ b/src/CppParser/AST.cpp @@ -732,6 +732,10 @@ NativeLibrary::NativeLibrary() { } +NativeLibrary::~NativeLibrary() +{ +} + // NativeLibrary DEF_STRING(NativeLibrary, FileName) DEF_VECTOR_STRING(NativeLibrary, Symbols) diff --git a/src/CppParser/AST.h b/src/CppParser/AST.h index 933fc986..00286ba0 100644 --- a/src/CppParser/AST.h +++ b/src/CppParser/AST.h @@ -888,6 +888,7 @@ class CS_API NativeLibrary { public: NativeLibrary(); + ~NativeLibrary(); STRING(FileName) ArchType ArchType; VECTOR_STRING(Symbols)