diff --git a/library/public/interactor.h b/library/public/interactor.h index 7eb21c90eb..7e20dbf336 100644 --- a/library/public/interactor.h +++ b/library/public/interactor.h @@ -237,7 +237,8 @@ class F3D_EXPORT interactor * The event loop will be triggered every deltaTime in seconds, and userCallBack will be called at * the start of the event loop */ - virtual interactor& start(double deltaTime = 1.0 / 30, std::function userCallBack = nullptr) = 0; + virtual interactor& start( + double deltaTime = 1.0 / 30, std::function userCallBack = nullptr) = 0; /** * Stop the interactor. diff --git a/library/testing/TestSDKOptions.cxx b/library/testing/TestSDKOptions.cxx index 3434379de0..abbeeb9d2f 100644 --- a/library/testing/TestSDKOptions.cxx +++ b/library/testing/TestSDKOptions.cxx @@ -197,11 +197,11 @@ int TestSDKOptions(int argc, char* argv[]) test.expect( "inexistent_exception exception on setAsString", [&]() { opt.setAsString("dummy", "2.13"); }); - test.expect( - "inexistent_exception exception on getAsString", [&]() { std::ignore = opt.getAsString("dummy"); }); + test.expect("inexistent_exception exception on getAsString", + [&]() { std::ignore = opt.getAsString("dummy"); }); - test.expect( - "no_value_exception exception on getAsString", [&]() { std::ignore = opt.getAsString("render.point_size"); }); + test.expect("no_value_exception exception on getAsString", + [&]() { std::ignore = opt.getAsString("render.point_size"); }); f3d::options opt6{}; diff --git a/library/testing/TestSDKOptionsIO.cxx b/library/testing/TestSDKOptionsIO.cxx index 614bd03760..28448107e6 100644 --- a/library/testing/TestSDKOptionsIO.cxx +++ b/library/testing/TestSDKOptionsIO.cxx @@ -23,7 +23,8 @@ class ParsingTest : public PseudoUnitTest template void parse_expect(const std::string& label, const std::string& input) { - PseudoUnitTest::expect(label + " `" + input + "`", [&]() { std::ignore = f3d::options::parse(input); }); + PseudoUnitTest::expect( + label + " `" + input + "`", [&]() { std::ignore = f3d::options::parse(input); }); } };