mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 15:13:10 +02:00
Coding Standard -- static_cast
This commit is contained in:
parent
09cf01e097
commit
547431d52e
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ void ModelTreeRenderer::renderElement(OctreeElement* element, RenderArgs* args)
|
|||
args->_elementsTouched++;
|
||||
// actually render it here...
|
||||
// we need to iterate the actual modelItems of the element
|
||||
ModelTreeElement* modelTreeElement = (ModelTreeElement*)element;
|
||||
ModelTreeElement* modelTreeElement = static_cast<ModelTreeElement*>(element);
|
||||
|
||||
QList<ModelItem>& modelItems = modelTreeElement->getModels();
|
||||
|
||||
|
|
Loading…
Reference in a new issue