From 069f5cd296eee499e752fd5dce70e91423fd431f Mon Sep 17 00:00:00 2001 From: young Date: Fri, 14 Feb 2014 10:40:56 +0000 Subject: [PATCH] Bug fix. git-svn-id: https://svn.dealii.org/branches/branch_petscscalar_complex@32484 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/deal.II/lac/constraint_matrix.h | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/deal.II/include/deal.II/lac/constraint_matrix.h b/deal.II/include/deal.II/lac/constraint_matrix.h index f548a69857..c579960de7 100644 --- a/deal.II/include/deal.II/lac/constraint_matrix.h +++ b/deal.II/include/deal.II/lac/constraint_matrix.h @@ -957,13 +957,13 @@ public: * Same as above for complex. */ template - void + void distribute_local_to_global (const FullMatrix > &local_matrix, - const Vector &local_vector, - const std::vector &local_dof_indices, - MatrixType &global_matrix, - VectorType &global_vector, - bool use_inhomogeneities_for_rhs = false) const; + const Vector > &local_vector, + const std::vector &local_dof_indices, + MatrixType &global_matrix, + VectorType &global_vector, + bool use_inhomogeneities_for_rhs = false) const; /** * Do a similar operation as the distribute_local_to_global() function that @@ -1781,15 +1781,15 @@ distribute_local_to_global (const FullMatrix &local_matrix, // Complex case (maybe can be merged with the function above) template -inline -void -ConstraintMatrix:: + inline + void + ConstraintMatrix:: distribute_local_to_global (const FullMatrix > &local_matrix, const Vector > &local_vector, - const std::vector &local_dof_indices, - MatrixType &global_matrix, - VectorType &global_vector, - bool use_inhomogeneities_for_rhs) const + const std::vector &local_dof_indices, + MatrixType &global_matrix, + VectorType &global_vector, + bool use_inhomogeneities_for_rhs) const { // enter the internal function with the respective block information set, // the actual implementation follows in the cm.templates.h file. -- 2.39.5