fix comment

This commit is contained in:
Andrew Meadows 2018-02-20 17:37:07 -08:00
parent 7ed68ced62
commit 76d2e9bc78

View file

@ -95,7 +95,7 @@ bool DeleteEntityOperator::preRecursion(const OctreeElementPointer& element) {
EntityItemPointer theEntity = details.entity; EntityItemPointer theEntity = details.entity;
bool entityDeleted = entityTreeElement->removeEntityItem(theEntity, true); // remove it from the element bool entityDeleted = entityTreeElement->removeEntityItem(theEntity, true); // remove it from the element
assert(entityDeleted); assert(entityDeleted);
(void)entityDeleted; // quite warning (void)entityDeleted; // quiet warning about unused variable
_tree->clearEntityMapEntry(details.entity->getEntityItemID()); _tree->clearEntityMapEntry(details.entity->getEntityItemID());
_foundCount++; _foundCount++;
} }