| 914 | } |
| 915 | |
| 916 | LogObjectManager::~LogObjectManager() |
| 917 | { |
| 918 | for (auto &_object : _objects) { |
| 919 | if (_object->refcount_dec() == 0) { |
| 920 | delete _object; |
| 921 | } |
| 922 | } |
| 923 | |
| 924 | for (auto &_APIobject : _APIobjects) { |
| 925 | if (_APIobject->refcount_dec() == 0) { |
| 926 | delete _APIobject; |
| 927 | } |
| 928 | } |
| 929 | |
| 930 | delete _APImutex; |
| 931 | } |
| 932 | |
| 933 | int |
| 934 | LogObjectManager::_manage_object(LogObject *log_object, bool is_api_object, int maxConflicts) |
nothing calls this directly
no test coverage detected