From: wolf Date: Fri, 23 Jul 2004 13:49:25 +0000 (+0000) Subject: Fix a completely dysfunctional Assertion using = instead of ==. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d184fde4dce13ceb228059765f732d08df487c2;p=dealii-svn.git Fix a completely dysfunctional Assertion using = instead of ==. git-svn-id: https://svn.dealii.org/trunk@9517 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 3960d5988c..b9eea05233 100644 --- a/deal.II/deal.II/source/dofs/dof_renumbering.cc +++ b/deal.II/deal.II/source/dofs/dof_renumbering.cc @@ -1209,7 +1209,7 @@ compute_subdomain_wise (std::vector &new_dof_indices, } // we should have numbered all dofs - Assert (next_free_index = n_dofs, ExcInternalError()); + Assert (next_free_index == n_dofs, ExcInternalError()); Assert (std::find (new_dof_indices.begin(), new_dof_indices.end(), deal_II_numbers::invalid_unsigned_int) == new_dof_indices.end(),