We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d06aa commit 6fab6c1Copy full SHA for 6fab6c1
tests/cpp_unit_tests/test_job_dispatch.cpp
@@ -60,7 +60,7 @@ class JobAdapterMock : public JobInterface<JobAdapterMock> {
60
}
61
return *this;
62
};
63
- JobAdapterMock(JobAdapterMock&& other) noexcept : counter_{std::move(other.counter_)}, logger_{other.logger_} {}
+ JobAdapterMock(JobAdapterMock&& other) noexcept : logger_{other.logger_}, counter_{std::move(other.counter_)} {}
64
JobAdapterMock& operator=(JobAdapterMock&& other) noexcept {
65
if (this != &other) {
66
counter_ = std::move(other.counter_);
0 commit comments