From a57d5c2a0f8d7892fddaa242497f81704bde1d00 Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Fri, 22 Mar 2013 13:54:48 +0000 Subject: [PATCH] Convert unsigned int to types::global_dof_index. git-svn-id: https://svn.dealii.org/branches/branch_bigger_global_dof_indices_4@28986 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/schur_matrix.h | 4 ++-- deal.II/include/deal.II/matrix_free/dof_info.templates.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/include/deal.II/lac/schur_matrix.h b/deal.II/include/deal.II/lac/schur_matrix.h index 8f6d671f82..a973ecf198 100644 --- a/deal.II/include/deal.II/lac/schur_matrix.h +++ b/deal.II/include/deal.II/lac/schur_matrix.h @@ -204,7 +204,7 @@ private: /** * Optional signature of the @p u-vector. */ - std::vector signature; + std::vector signature; /** * Switch for debugging information. @@ -222,7 +222,7 @@ SchurMatrix const MDt &Dt, const MC &C, VectorMemory > &mem, - const std::vector &signature) + const std::vector &signature) : Ainv(&Ainv), B(&B), Dt(&Dt), C(&C), mem(mem), signature(signature), diff --git a/deal.II/include/deal.II/matrix_free/dof_info.templates.h b/deal.II/include/deal.II/matrix_free/dof_info.templates.h index 4455a2edb3..af421b9993 100644 --- a/deal.II/include/deal.II/matrix_free/dof_info.templates.h +++ b/deal.II/include/deal.II/matrix_free/dof_info.templates.h @@ -617,7 +617,7 @@ no_constraint: if (store_plain_indices == true) { new_rowstart_plain.resize (size_info.n_macro_cells + 1, - numbers::invalid_unsigned_int); + numbers::invalid_dof_index); new_plain_indices.reserve (plain_dof_indices.size()); } -- 2.39.5