From: Wolfgang Bangerth Date: Fri, 10 Apr 2015 22:46:26 +0000 (-0500) Subject: Make compile in 64bit mode. X-Git-Tag: v8.3.0-rc1~303^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26fb7fa8fcd61b46b68e13a31bfc8080b3e5126b;p=dealii.git Make compile in 64bit mode. --- diff --git a/include/deal.II/fe/mapping_fe.h b/include/deal.II/fe/mapping_fe.h index 4f6c361579..308c0a82db 100644 --- a/include/deal.II/fe/mapping_fe.h +++ b/include/deal.II/fe/mapping_fe.h @@ -565,7 +565,7 @@ private: mutable std::vector local_dofs; - mutable std::vector dof_indices; + mutable std::vector dof_indices; /** * Mutex to protect local_dofs. diff --git a/source/fe/mapping_fe.cc b/source/fe/mapping_fe.cc index 0fd442d240..3a67e89721 100644 --- a/source/fe/mapping_fe.cc +++ b/source/fe/mapping_fe.cc @@ -1327,7 +1327,7 @@ void MappingFE::update_euler_vector_using_triangulation MappingQ map_q(fe->degree); FEValues fe_v(map_q, *fe, quad, update_quadrature_points); - std::vector dofs(fe->dofs_per_cell); + std::vector dofs(fe->dofs_per_cell); AssertDimension(fe->dofs_per_cell, support_points.size()); Assert(fe->is_primitive(), ExcMessage("FE is not Primitive! This won't work."));