Remove unused field.

This commit is contained in:
XMRig 2019-03-27 19:27:29 +07:00
parent 933c0d40b7
commit 82bbef614e
2 changed files with 1 additions and 3 deletions

View file

@ -51,8 +51,7 @@ inline static const char *format(double h, char *buf, size_t size)
Hashrate::Hashrate(size_t threads, xmrig::Controller *controller) : Hashrate::Hashrate(size_t threads, xmrig::Controller *controller) :
m_highest(0.0), m_highest(0.0),
m_threads(threads), m_threads(threads),
m_timer(nullptr), m_timer(nullptr)
m_controller(controller)
{ {
m_counts = new uint64_t*[threads]; m_counts = new uint64_t*[threads];
m_timestamps = new uint64_t*[threads]; m_timestamps = new uint64_t*[threads];

View file

@ -69,7 +69,6 @@ private:
uint64_t** m_counts; uint64_t** m_counts;
uint64_t** m_timestamps; uint64_t** m_timestamps;
uv_timer_t *m_timer; uv_timer_t *m_timer;
xmrig::Controller *m_controller;
}; };