Cleanup: use function style casts

This commit is contained in:
Campbell Barton
2023-07-31 19:57:28 +10:00
parent 90e123c746
commit 6d2326dabf
21 changed files with 41 additions and 41 deletions

View File

@@ -133,7 +133,7 @@ void PatchMap::initializeQuadtree(PatchTable const &patchTable)
//
int nPatchFaces = (_maxPatchFace - _minPatchFace) + 1;
int nHandles = (int)_handles.size();
int nHandles = int(_handles.size());
_quadtree.reserve(nPatchFaces + nHandles);
_quadtree.resize(nPatchFaces);