From a616192cef3b33ad3ca46230f8765b22f40b69a4 Mon Sep 17 00:00:00 2001 From: Graham Harper Date: Thu, 26 Jul 2018 22:51:16 +0000 Subject: [PATCH] Fixed static normals array --- source/fe/fe_bernardi_raugel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5