From: Wolfgang Bangerth Date: Sat, 12 Aug 2017 17:59:13 +0000 (-0600) Subject: Use correct data type also in 64-bit mode. X-Git-Tag: v9.0.0-rc1~1293^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4d5cd8f5dc491e2d104a1d22e1eb7c59be0b600;p=dealii.git Use correct data type also in 64-bit mode. --- diff --git a/source/hp/dof_handler.cc b/source/hp/dof_handler.cc index 75123e9861..058a4a5664 100644 --- a/source/hp/dof_handler.cc +++ b/source/hp/dof_handler.cc @@ -1647,7 +1647,7 @@ namespace hp faces.reset (); vertex_dofs = std::move(std::vector()); - vertex_dof_offsets = std::move (std::vector()); + vertex_dof_offsets = std::move (std::vector()); } }