Fixed 32-bit.

This commit is contained in:
XMRig 2019-08-02 10:54:00 +07:00
parent 37710b0c7b
commit 718be7e9aa
3 changed files with 26 additions and 2 deletions

View file

@ -90,10 +90,13 @@ public:
inline bool operator==(const Job &other) const { return isEqual(other); }
inline bool operator!=(const Job &other) const { return !isEqual(other); }
inline Job &operator=(const Job &other) { copy(other); return *this; }
private:
void copy(const Job &other);
Algorithm m_algorithm;
bool m_nicehash = false;
bool m_nicehash = false;
size_t m_size = 0;
String m_clientId;
String m_id;