remove restrict keyword

This commit is contained in:
Julian Andrej
2022-06-14 15:34:05 -07:00
parent ea45cda9bb
commit c03554d7b0
+1 -1
View File
@@ -49,7 +49,7 @@ struct NeoHookeanMaterial
*/
template <typename T>
MFEM_HOST_DEVICE tensor<T, dim, dim>
stress(const tensor<T, dim, dim> &__restrict__ dudx) const
stress(const tensor<T, dim, dim> &dudx) const
{
constexpr auto I = mfem::internal::IsotropicIdentity<dim>();
T J = det(I + dudx);