Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbowen42 committed Nov 2, 2023
1 parent cf090f5 commit a1d55a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/serac/numerics/functional/domain_integral_kernels.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ void action_of_gradient_kernel(const double* dU, double* dR, derivatives_type* q

// mfem provides this information in 1D arrays, so we reshape it
// into strided multidimensional arrays before using
auto du = reinterpret_cast<const typename trial_element::dof_type*>(dU);
auto dr = reinterpret_cast<typename test_element::dof_type*>(dR);
auto du = reinterpret_cast<const typename trial_element::dof_type*>(dU);
auto dr = reinterpret_cast<typename test_element::dof_type*>(dR);
constexpr TensorProductQuadratureRule<Q> rule{};

// for each element in the domain
Expand Down

0 comments on commit a1d55a8

Please sign in to comment.