Skip to content

Commit adf252a

Browse files
committed
fix formatting
Signed-off-by: Martijn Govers <[email protected]>
1 parent 0b04e8f commit adf252a

File tree

1 file changed

+2
-1
lines changed
  • power_grid_model_c/power_grid_model/include/power_grid_model/common

1 file changed

+2
-1
lines changed

power_grid_model_c/power_grid_model/include/power_grid_model/common/timer.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ class Timer {
2626
Timer(Logger& log, LogEvent code) : log_{&log}, code_{code}, start_{Clock::now()} {}
2727

2828
Timer(Timer const&) = delete;
29-
Timer(Timer&& other) noexcept : log_{std::exchange(other.log_, nullptr)}, code_{other.code_}, start_{other.start_} {}
29+
Timer(Timer&& other) noexcept
30+
: log_{std::exchange(other.log_, nullptr)}, code_{other.code_}, start_{other.start_} {}
3031
Timer& operator=(Timer const&) = delete;
3132

3233
Timer& operator=(Timer&& timer) noexcept {

0 commit comments

Comments
 (0)