From c03554d7b0fd00da4d39ab94de3d9500256cc83a Mon Sep 17 00:00:00 2001 From: Julian Andrej Date: Tue, 14 Jun 2022 15:34:05 -0700 Subject: [PATCH] remove restrict keyword --- miniapps/hooke/materials/neohookean.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniapps/hooke/materials/neohookean.hpp b/miniapps/hooke/materials/neohookean.hpp index 5614405dc6..88a67d5d2b 100644 --- a/miniapps/hooke/materials/neohookean.hpp +++ b/miniapps/hooke/materials/neohookean.hpp @@ -49,7 +49,7 @@ struct NeoHookeanMaterial */ template MFEM_HOST_DEVICE tensor - stress(const tensor &__restrict__ dudx) const + stress(const tensor &dudx) const { constexpr auto I = mfem::internal::IsotropicIdentity(); T J = det(I + dudx);