From: Martin Kronbichler Date: Tue, 14 Apr 2015 09:23:00 +0000 (+0200) Subject: Fix test in 64bit mode X-Git-Tag: v8.3.0-rc1~279^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5bbe60a2f639bf89c275a82eba8a5809fac4742;p=dealii.git Fix test in 64bit mode --- diff --git a/tests/hp/solution_transfer_12.cc b/tests/hp/solution_transfer_12.cc index c2e29e3fda..99d32c0db6 100644 --- a/tests/hp/solution_transfer_12.cc +++ b/tests/hp/solution_transfer_12.cc @@ -124,7 +124,7 @@ void transfer(std::ostream &out) quad.push_back (QTrapez ()); hp::FEValues hp_fe_val (fe_q, quad, update_values | update_quadrature_points); - std::vector local_dof_indices; + std::vector local_dof_indices; typename hp::DoFHandler::active_cell_iterator cell = q_dof_handler.begin_active(), endc = q_dof_handler.end();