This commit is contained in:
Jethro Grassie 2019-08-09 19:45:03 -04:00
parent 24c293e58e
commit 843951266f
No known key found for this signature in database
GPG key ID: DE8ED755616565BB
2 changed files with 3 additions and 3 deletions

View file

@ -143,9 +143,9 @@ xmrig::CpuBackend::~CpuBackend()
}
std::pair<size_t, size_t> xmrig::CpuBackend::hugePages() const
std::pair<unsigned, unsigned> xmrig::CpuBackend::hugePages() const
{
std::pair<size_t, size_t> pages(0, 0);
std::pair<unsigned, unsigned> pages(0, 0);
# ifdef XMRIG_ALGO_RANDOMX
if (d_ptr->algo.family() == Algorithm::RANDOM_X) {

View file

@ -46,7 +46,7 @@ public:
CpuBackend(Controller *controller);
~CpuBackend() override;
std::pair<size_t, size_t> hugePages() const;
std::pair<unsigned, unsigned> hugePages() const;
protected:
bool isEnabled() const override;