From 5d184fde4dce13ceb228059765f732d08df487c2 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 23 Jul 2004 13:49:25 +0000 Subject: [PATCH] Fix a completely dysfunctional Assertion using = instead of ==. git-svn-id: https://svn.dealii.org/trunk@9517 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_renumbering.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(), -- 2.39.5