From 105272079bbb2d171eb14fd889afa604224f0cdb Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Fri, 31 May 2013 23:06:26 +0000 Subject: [PATCH] Fix a test. git-svn-id: https://svn.dealii.org/branches/branch_bigger_global_dof_indices_4@29703 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/development/cmake.html | 1 + tests/mpi/multigrid_uniform.cc | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deal.II/doc/development/cmake.html b/deal.II/doc/development/cmake.html index e9e6643ea9..0b1c072f98 100644 --- a/deal.II/doc/development/cmake.html +++ b/deal.II/doc/development/cmake.html @@ -244,6 +244,7 @@ DEAL_II_WITH_TRILINOS DEAL_II_WITH_UMFPACK DEAL_II_WITH_ZLIB + DEAL_II_WITH_64BIT_INDICES They all have standard meaning with the exception of two: diff --git a/tests/mpi/multigrid_uniform.cc b/tests/mpi/multigrid_uniform.cc index f1a75efe94..3227445589 100644 --- a/tests/mpi/multigrid_uniform.cc +++ b/tests/mpi/multigrid_uniform.cc @@ -248,7 +248,7 @@ namespace Step50 FullMatrix cell_matrix (dofs_per_cell, dofs_per_cell); Vector cell_rhs (dofs_per_cell); - std::vector local_dof_indices (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points); @@ -305,7 +305,7 @@ namespace Step50 FullMatrix cell_matrix (dofs_per_cell, dofs_per_cell); - std::vector local_dof_indices (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points); -- 2.39.5