From: Graham Harper Date: Thu, 26 Jul 2018 22:51:16 +0000 (+0000) Subject: Fixed static normals array X-Git-Tag: v9.1.0-rc1~846^2~7 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a616192cef3b33ad3ca46230f8765b22f40b69a4;p=dealii.git Fixed static normals array --- diff --git a/source/fe/fe_bernardi_raugel.cc b/source/fe/fe_bernardi_raugel.cc index bcc27fb2bd..9abc4fb38f 100644 --- a/source/fe/fe_bernardi_raugel.cc +++ b/source/fe/fe_bernardi_raugel.cc @@ -101,7 +101,7 @@ FE_BernardiRaugel::convert_generalized_support_point_values_to_dof_values( Assert(nodal_values.size() == this->dofs_per_cell, ExcDimensionMismatch(nodal_values.size(), this->dofs_per_cell)); - static std::vector> normals; + std::vector> normals; for (unsigned int i = 0; i < GeometryInfo::faces_per_cell; ++i) { Tensor<1, dim> normal;