| 24 | |
| 25 | |
| 26 | ScriptPriorityQueue::~ScriptPriorityQueue() |
| 27 | { |
| 28 | /* Release reference to stored objects. */ |
| 29 | auto &inst = ScriptObject::GetActiveInstance(); |
| 30 | if (!inst.InShutdown()) { |
| 31 | for (auto &i : this->queue) inst.ReleaseSQObject(const_cast<HSQOBJECT *>(&i.second)); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | SQInteger ScriptPriorityQueue::Insert(HSQUIRRELVM vm) |
| 36 | { |
nothing calls this directly
no test coverage detected