Removed m_bench field from Job class.

This commit is contained in:
XMRig
2020-10-16 20:29:11 +07:00
parent 572616f3d2
commit 14892cf040
19 changed files with 44 additions and 68 deletions

View File

@@ -174,10 +174,6 @@ void xmrig::Job::copy(const Job &other)
memcpy(m_rawBlob, other.m_rawBlob, sizeof(m_rawBlob));
memcpy(m_rawTarget, other.m_rawTarget, sizeof(m_rawTarget));
# endif
# ifdef XMRIG_FEATURE_BENCHMARK
m_bench = other.m_bench;
# endif
}
@@ -209,8 +205,4 @@ void xmrig::Job::move(Job &&other)
memcpy(m_rawBlob, other.m_rawBlob, sizeof(m_rawBlob));
memcpy(m_rawTarget, other.m_rawTarget, sizeof(m_rawTarget));
# endif
# ifdef XMRIG_FEATURE_BENCHMARK
m_bench = other.m_bench;
# endif
}