From d4d5cd8f5dc491e2d104a1d22e1eb7c59be0b600 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 12 Aug 2017 11:59:13 -0600 Subject: [PATCH] Use correct data type also in 64-bit mode. --- source/hp/dof_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } -- 2.39.5