Fixed 32-bit.
This commit is contained in:
parent
37710b0c7b
commit
718be7e9aa
3 changed files with 26 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue