Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Roberts committed Oct 29, 2024
1 parent 7f6d183 commit 85e6275
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit_tests/arkode/CXX_serial/ark_test_splittingstep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,11 +313,11 @@ static SUNStepper create_exp_stepper(const sundials::Context& ctx,
sunrealtype t{};
const N_Vector v;

Content(const sunrealtype l, const N_Vector tmpl) : lambda(l), v(N_VClone(tmpl)) {}
Content(const sunrealtype l, const N_Vector tmpl)
: lambda(l), v(N_VClone(tmpl))
{}

~Content() {
N_VDestroy(v);
}
~Content() { N_VDestroy(v); }

static Content& from_stepper(SUNStepper s)
{
Expand Down

0 comments on commit 85e6275

Please sign in to comment.