From 0be0b5742454ef407de2466d2c6d063b11d7afd6 Mon Sep 17 00:00:00 2001 From: frohne Date: Wed, 2 Nov 2011 18:57:25 +0000 Subject: [PATCH] fixed a bug in line 2054 git-svn-id: https://svn.dealii.org/trunk@24719 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/constraint_matrix.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/lac/constraint_matrix.h b/deal.II/include/deal.II/lac/constraint_matrix.h index 00869eaf6c..829aa18a2c 100644 --- a/deal.II/include/deal.II/lac/constraint_matrix.h +++ b/deal.II/include/deal.II/lac/constraint_matrix.h @@ -2051,8 +2051,9 @@ distribute_local_to_global (const FullMatrix &local_matrix, // function actually implementing this // feature in the cm.templates.h file. Vector dummy(0); + bool bool_dummy = false; distribute_local_to_global (local_matrix, dummy, local_dof_indices, - global_matrix, dummy, + global_matrix, dummy, bool_dummy, internal::bool2type::value>()); } -- 2.39.5