diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp index 1539ec6d84e2de91c88965fc49fb7a93d52fd9c3..b6541737a3743194f7f22c469762a0e1d95a544b 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp @@ -363,8 +363,7 @@ struct MicroBenchmarkIter { constexpr static bool is_callable = concept ::exists<call_with_input_t, Callable, Input>; static inline void iter(const Callable& iteration, const Input* input) { - static_assert(is_callable, - "Gave callable that is not callable with input"); + static_assert(is_callable, "Gave callable that is not callable with input"); if constexpr (is_callable) { using Result = std::invoke_result_t<Callable, const Input&>; MicroBenchmarkIterImpl<Callable, Input, Result>::iter(iteration, *input); @@ -380,7 +379,8 @@ struct MicroBenchmarkIter<Callable, void> { concept ::exists<call_without_input_t, Callable>; static inline void iter(const Callable& iteration, const void* = nullptr) { - static_assert(is_callable, "Gave callable that is not callable without input"); + static_assert(is_callable, + "Gave callable that is not callable without input"); if constexpr (is_callable) { using Result = std::invoke_result_t<Callable>; MicroBenchmarkIterImpl<Callable, void, Result>::iter(iteration);