Skip to content

Commit 8e2e7c5

Browse files
committed
Fixed typo bug in DeleteQueue::clear()
1 parent cf4d160 commit 8e2e7c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vsg/threading/DeleteQueue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void DeleteQueue::clear()
8686
// use a swap of the container to keep the time the mutex is acquired as short as possible
8787
{
8888
std::scoped_lock lock(_mutex);
89-
objectsToDelete.swap(objectsToDelete);
89+
objectsToDelete.swap(_objectsToDelete);
9090
}
9191

9292
size_t numObjectsToDelete = objectsToDelete.size();

0 commit comments

Comments
 (0)