Cleanup: Compilation warnings

Mainly -Wset-but-unused-variable.
Makes default compilation on macOS way less noisy.

Differential Revision: https://developer.blender.org/D14357
This commit is contained in:
Sergey Sharybin
2022-03-16 10:57:19 +01:00
parent 2252bc6a55
commit c3ecfdf40b
23 changed files with 51 additions and 90 deletions

View File

@@ -242,6 +242,10 @@ void Octree::printMemUsage()
dc_printf("Total allocated bytes on disk: %d \n", totalbytes);
dc_printf("Total leaf nodes: %d\n", totalLeafs);
/* Unused when not debuggining. */
(void)totalbytes;
(void)totalLeafs;
}
void Octree::resetMinimalEdges()