From: wolf Date: Mon, 21 Apr 2003 20:14:03 +0000 (+0000) Subject: Remove erroneous return statement. Assume this is sensible here. How X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c2321625a0d5b3a70132ab2f58c45768bc849e3;p=dealii-svn.git Remove erroneous return statement. Assume this is sensible here. How could that happen in the first place??? git-svn-id: https://svn.dealii.org/trunk@7435 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_renumbering.cc b/deal.II/deal.II/source/dofs/dof_renumbering.cc index 40c373b3e7..2d46ee83bd 100644 --- a/deal.II/deal.II/source/dofs/dof_renumbering.cc +++ b/deal.II/deal.II/source/dofs/dof_renumbering.cc @@ -824,8 +824,6 @@ DoFRenumbering::compute_sort_selected_dofs_back ( }; Assert (next_unselected == n_selected_dofs, ExcInternalError()); Assert (next_selected == n_dofs, ExcInternalError()); - - return new_indices; }