fix memory leak

This commit is contained in:
2025-08-15 17:22:04 +03:00
parent 7240cca537
commit 47382ebf1c
2 changed files with 17 additions and 8 deletions

View File

@@ -70,6 +70,16 @@ public:
bool forceProcess;
};
class protector final {
private:
basic_variables *_var = nullptr;
public:
~protector();
void setVariablePtr(basic_variables *&_var);
};
using FunctionBase = basic_function;
using FunctionManager = basic_function_manager;
using VariableTable = basic_variables;