Merge pull request #575 from stephenberry/develop

Added virtual destructor for ChaiScript_Basic
This commit is contained in:
Rob Loach 2024-02-20 12:52:52 -05:00 committed by GitHub
commit 406a7ba1ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,6 +236,10 @@ namespace chaiscript {
} }
public: public:
/// \brief Virtual destructor for ChaiScript
virtual ~ChaiScript_Basic() = default;
/// \brief Constructor for ChaiScript /// \brief Constructor for ChaiScript
/// \param[in] t_lib Standard library to apply to this ChaiScript instance /// \param[in] t_lib Standard library to apply to this ChaiScript instance
/// \param[in] t_modulepaths Vector of paths to search when attempting to load a binary module /// \param[in] t_modulepaths Vector of paths to search when attempting to load a binary module