From: bangerth Date: Wed, 25 Sep 2013 22:57:59 +0000 (+0000) Subject: More cases of needing to use types::global_dof_indices. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c486d6d5c00b08a148bf1a8499126b0089f0e174;p=dealii-svn.git More cases of needing to use types::global_dof_indices. git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30935 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/fe_values_view_25_nonsymmetric.cc b/tests/deal.II/fe_values_view_25_nonsymmetric.cc index d2231e87ae..bfa2517689 100644 --- a/tests/deal.II/fe_values_view_25_nonsymmetric.cc +++ b/tests/deal.II/fe_values_view_25_nonsymmetric.cc @@ -63,7 +63,7 @@ void test (const Triangulation &tr, .get_function_divergences (fe_function, divergences); // now do the same "by hand" - std::vector local_dof_indices (fe.dofs_per_cell); + std::vector local_dof_indices (fe.dofs_per_cell); dof.begin_active()->get_dof_indices (local_dof_indices); for (unsigned int i=0; i::make_grid_and_dofs() DoFRenumbering::component_wise(dof_handler); // total number of dof per block component - std::vector dofs_per_block(2); + std::vector dofs_per_block(2); DoFTools::count_dofs_per_block(dof_handler, dofs_per_block, block_component); const unsigned int n_stress_dof = dofs_per_block[0];