From: Wolfgang Bangerth Date: Fri, 21 Aug 2015 19:37:06 +0000 (-0500) Subject: Fix tests in 64-bit mode. X-Git-Tag: v8.4.0-rc2~562^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1411%2Fhead;p=dealii.git Fix tests in 64-bit mode. Both tests did not use types::global_dof_index and therefore failed in 64-bit mode. --- diff --git a/tests/sharedtria/dof_01.cc b/tests/sharedtria/dof_01.cc index 4fa58f201b..fd2c669f62 100644 --- a/tests/sharedtria/dof_01.cc +++ b/tests/sharedtria/dof_01.cc @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id: dof_handler_number_cache.cc 31761 2013-11-22 14:42:37Z heister $ // -// Copyright (C) 2008 - 2013 by the deal.II authors +// Copyright (C) 2008 - 2013, 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -97,7 +97,7 @@ void test() << "n_locally_owned_dofs: " << dof_handler.n_locally_owned_dofs() << std::endl; deallog << "n_locally_owned_dofs_per_processor: "; - std::vector v = dof_handler.n_locally_owned_dofs_per_processor(); + std::vector v = dof_handler.n_locally_owned_dofs_per_processor(); unsigned int sum = 0; for (unsigned int i=0;i v = dof_handler.n_locally_owned_dofs_per_processor(); + std::vector v = dof_handler.n_locally_owned_dofs_per_processor(); unsigned int sum = 0; for (unsigned int i=0;i