From d4a678373c6d9ccd10d6a98e70341bebce2cd1e1 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 6 Sep 2013 18:26:02 +0000 Subject: [PATCH] removed unused variable in match_tree_recursively git-svn-id: https://svn.dealii.org/trunk@30634 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/distributed/tria.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/deal.II/source/distributed/tria.cc b/deal.II/source/distributed/tria.cc index 5f253bf449..fc902abfa1 100644 --- a/deal.II/source/distributed/tria.cc +++ b/deal.II/source/distributed/tria.cc @@ -1173,12 +1173,11 @@ namespace const typename internal::p4est::types::forest &forest, const types::subdomain_id my_subdomain) { - ssize_t sidx; // check if this cell exists in // the local p4est cell - if ((sidx = sc_array_bsearch(const_cast(&tree.quadrants), + if (sc_array_bsearch(const_cast(&tree.quadrants), &p4est_cell, - internal::p4est::functions::quadrant_compare)) + internal::p4est::functions::quadrant_compare) != -1) { // yes, cell found in local part of p4est -- 2.39.5