From 63e78213c8c1e594e358411a08661b618177d099 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 1 Nov 2007 22:11:36 +0000 Subject: [PATCH] Remove std::fill of an array that now is empty. git-svn-id: https://svn.dealii.org/trunk@15425 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/vectors.templates.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/deal.II/deal.II/include/numerics/vectors.templates.h b/deal.II/deal.II/include/numerics/vectors.templates.h index 23960b172e..5ac81c1030 100644 --- a/deal.II/deal.II/include/numerics/vectors.templates.h +++ b/deal.II/deal.II/include/numerics/vectors.templates.h @@ -1324,11 +1324,9 @@ interpolate_boundary_values (const Mapping &mapping, // field to store the indices std::vector face_dofs; face_dofs.reserve (DoFTools::max_dofs_per_face(dof)); - std::fill (face_dofs.begin (), face_dofs.end (), DoFHandler::invalid_dof_index); std::vector > dof_locations; dof_locations.reserve (DoFTools::max_dofs_per_face(dof)); - std::fill (dof_locations.begin(), dof_locations.end (), Point()); // array to store the values of // the boundary function at the -- 2.39.5