diff --git a/src/workers/Handle.h b/src/workers/Handle.h index 9faae0d0..5dfdf700 100644 --- a/src/workers/Handle.h +++ b/src/workers/Handle.h @@ -47,11 +47,11 @@ public: inline void setWorker(IWorker *worker) { m_worker = worker; } private: - int m_priority; - int m_threadId; - int m_threads; - int64_t m_affinity; - IWorker *m_worker; + int m_priority; + int m_threadId; + int m_threads; + int64_t m_affinity; + IWorker *m_worker; uv_thread_t m_thread; }; diff --git a/src/workers/Worker.h b/src/workers/Worker.h index 11c4a198..856ffd76 100644 --- a/src/workers/Worker.h +++ b/src/workers/Worker.h @@ -48,13 +48,13 @@ public: protected: void storeStats(); - cryptonight_ctx *m_ctx; - int m_id; - int m_threads; - std::atomic m_hashCount; - std::atomic m_timestamp; - uint64_t m_count; - uint64_t m_sequence; + cryptonight_ctx *m_ctx; + int m_id; + int m_threads; + std::atomic m_hashCount; + std::atomic m_timestamp; + uint64_t m_count; + uint64_t m_sequence; };