Skip to content

Commit

Permalink
clang-format and tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
ddement committed Feb 19, 2025
1 parent 001ce91 commit 7fefa89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ struct CalculateStiffnessQuadraturePointValues {
qp_r0(i_elem, i_qp, 3)
};
const auto x0_prime_data = Kokkos::Array<double, 3>{
qp_x0_prime(i_elem, i_qp, 0), qp_x0_prime(i_elem, i_qp, 1),
qp_x0_prime(i_elem, i_qp, 2)
qp_x0_prime(i_elem, i_qp, 0), qp_x0_prime(i_elem, i_qp, 1), qp_x0_prime(i_elem, i_qp, 2)
};
auto xr_data = Kokkos::Array<double, 4>{};
auto u_data = Kokkos::Array<double, 3>{};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void TestCalculateStiffnessMatrixTests_OneElement() {

Kokkos::parallel_for(
"CalculateStiffnessMatrix", 1,
KOKKOS_LAMBDA(const size_t i_elem) {
KOKKOS_LAMBDA(size_t) {
constexpr auto c1 = 2.;
constexpr auto c2 = 1.;
constexpr auto l = 1.;
Expand Down

0 comments on commit 7fefa89

Please sign in to comment.