Skip to content

Commit

Permalink
Apply clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ZedThree authored and github-actions[bot] committed Oct 23, 2024
1 parent a6eab9c commit f970905
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/mesh/christoffel_symbols.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ChristoffelSymbols::ChristoffelSymbols(
G2_11_m(std::move(G2_11)), G2_22_m(std::move(G2_22)), G2_33_m(std::move(G2_33)),
G2_12_m(std::move(G2_12)), G2_13_m(std::move(G2_13)), G2_23_m(std::move(G2_23)),
G3_11_m(std::move(G3_11)), G3_22_m(std::move(G3_22)), G3_33_m(std::move(G3_33)),
G3_12_m(std::move(G3_12)), G3_13_m(std::move(G3_13)), G3_23_m(std::move(G3_23)) {};
G3_12_m(std::move(G3_12)), G3_13_m(std::move(G3_13)), G3_23_m(std::move(G3_23)){};

ChristoffelSymbols::ChristoffelSymbols(Coordinates& coordinates) {
// Calculate Christoffel symbol terms (18 independent values)
Expand Down
1 change: 0 additions & 1 deletion src/mesh/metric_tensor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include <cstdlib>
#include <utility>


MetricTensor::MetricTensor(FieldMetric g11, FieldMetric g22, FieldMetric g33,
FieldMetric g12, FieldMetric g13, FieldMetric g23)
: g11_m(std::move(g11)), g22_m(std::move(g22)), g33_m(std::move(g33)),
Expand Down

0 comments on commit f970905

Please sign in to comment.