From d34e8e8e4c44675a6e7bcd01e22c63ea78c2e98c Mon Sep 17 00:00:00 2001 From: Matthieu Aussal <aussal@MacBook-Pro-de-Matthieu.local> Date: Mon, 15 Mar 2021 15:23:37 +0100 Subject: [PATCH] remove static --- include/fem.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fem.hpp b/include/fem.hpp index 3cf1cbc..6460545 100644 --- a/include/fem.hpp +++ b/include/fem.hpp @@ -81,8 +81,8 @@ auto triangledata<T>::intsing(T x0, T y0, T z0) const { // initialize std::size_t ip, ipp; - static matrix<T> xX0S(1,3), yX0S(1,3), zX0S(1,3); - static matrix<T> nrmX0S(1,3), ca(1,3), sa(1,3), xnu(1,3); + matrix<T> xX0S(1,3), yX0S(1,3), zX0S(1,3); + matrix<T> nrmX0S(1,3), ca(1,3), sa(1,3), xnu(1,3); T omega, h, ps, psp1, ps2, ah, ar, intaRm1; T Rm1, dnRm1; T tol = 1e-7; -- GitLab