Skip to content

Commit 6fab6c1

Browse files
committed
fix clang-cl... it never ends
Signed-off-by: Martijn Govers <[email protected]>
1 parent 28d06aa commit 6fab6c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cpp_unit_tests/test_job_dispatch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class JobAdapterMock : public JobInterface<JobAdapterMock> {
6060
}
6161
return *this;
6262
};
63-
JobAdapterMock(JobAdapterMock&& other) noexcept : counter_{std::move(other.counter_)}, logger_{other.logger_} {}
63+
JobAdapterMock(JobAdapterMock&& other) noexcept : logger_{other.logger_}, counter_{std::move(other.counter_)} {}
6464
JobAdapterMock& operator=(JobAdapterMock&& other) noexcept {
6565
if (this != &other) {
6666
counter_ = std::move(other.counter_);

0 commit comments

Comments
 (0)