fixes
This commit is contained in:
parent
5b82b18c6f
commit
7415726e47
@ -43,6 +43,7 @@ public:
|
||||
observers.emplace(id, callback);
|
||||
return std::shared_ptr<int>(new int(id), [this](int* id) {
|
||||
observers.erase(*id);
|
||||
delete id;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@ -67,6 +67,7 @@ scriptenv scripting::create_pack_environment(const ContentPack& pack) {
|
||||
state->pop();
|
||||
return std::shared_ptr<int>(new int(id), [=](int* id) {
|
||||
state->removeEnvironment(*id);
|
||||
delete id;
|
||||
});
|
||||
}
|
||||
|
||||
@ -90,6 +91,7 @@ scriptenv scripting::create_doc_environment(scriptenv parent, const std::string&
|
||||
state->pop();
|
||||
return std::shared_ptr<int>(new int(id), [=](int* id) {
|
||||
state->removeEnvironment(*id);
|
||||
delete id;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
#include <memory>
|
||||
|
||||
namespace util {
|
||||
/// @brief Keeps shared pointers alive until destruction
|
||||
class ObjectsKeeper {
|
||||
std::vector<std::shared_ptr<void>> ptrs;
|
||||
public:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user