From: David Wells Date: Sat, 25 Aug 2018 20:52:31 +0000 (-0400) Subject: Remove an unused array. X-Git-Tag: v9.1.0-rc1~777^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7122%2Fhead;p=dealii.git Remove an unused array. dof_locations is later redefined as a reference to the face quadrature points. --- diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h index 8980930b52..53810e8548 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -2842,9 +2842,6 @@ namespace VectorTools std::vector face_dofs; face_dofs.reserve(DoFTools::max_dofs_per_face(dof)); - std::vector> dof_locations; - dof_locations.reserve(DoFTools::max_dofs_per_face(dof)); - // array to store the values of the boundary function at the boundary // points. have two arrays for scalar and vector functions to use the // more efficient one respectively