We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fa750 commit bcd6385Copy full SHA for bcd6385
Source/Objects/ImplementationBase.cpp
@@ -153,7 +153,7 @@ void ObjectImplementationManager::handleAsyncUpdate()
153
for (auto it = objectImplementations.cbegin(); it != objectImplementations.cend();) {
154
auto& [ptr, implementation] = *it;
155
156
- if (allObjects.contains(ptr)) {
+ if (!allObjects.contains(ptr)) {
157
it = objectImplementations.erase(it); // Erase and move iterator forward.
158
} else {
159
++it;
0 commit comments