Remove unused variables

This commit is contained in:
Simon Giraudot 2021-03-11 09:34:33 +01:00
parent ea17a54671
commit a5f139f9df
1 changed files with 0 additions and 1 deletions

View File

@ -1091,7 +1091,6 @@ private:
const typename Octree::Node node_containing_point(const Octree *octree, const Point &p, std::size_t level) { const typename Octree::Node node_containing_point(const Octree *octree, const Point &p, std::size_t level) {
// Find the node containing the point // Find the node containing the point
bool upperZ, upperY, upperX;
typename Octree::Node cur = octree->root(); typename Octree::Node cur = octree->root();
while (!cur.is_null() && cur.depth() < level) { while (!cur.is_null() && cur.depth() < level) {