From: Martin Kronbichler Date: Mon, 30 Dec 2013 09:06:39 +0000 (+0000) Subject: Fix compilation with 64 bit integers X-Git-Tag: v8.2.0-rc1~1100 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69c7989fcf9055194579a1c57dd0270bf20cbdfe;p=dealii.git Fix compilation with 64 bit integers git-svn-id: https://svn.dealii.org/trunk@32129 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/numerics/vector_tools.templates.h b/deal.II/include/deal.II/numerics/vector_tools.templates.h index cad23ec6b0..13b1ffff0f 100644 --- a/deal.II/include/deal.II/numerics/vector_tools.templates.h +++ b/deal.II/include/deal.II/numerics/vector_tools.templates.h @@ -410,7 +410,7 @@ namespace VectorTools const unsigned int max_rep_points = *std::max_element(n_rep_points.begin(), n_rep_points.end()); - std::vector dofs_on_cell(fe.max_dofs_per_cell()); + std::vector< types::global_dof_index> dofs_on_cell(fe.max_dofs_per_cell()); std::vector< Point > rep_points(max_rep_points); std::vector< std::vector > function_values_scalar(fe.size());