Update base.

This commit is contained in:
XMRig 2021-09-02 20:02:42 +07:00
parent dbc53c5d46
commit 28312236fd
No known key found for this signature in database
GPG key ID: 446A53638BE94409
9 changed files with 18 additions and 19 deletions

View file

@ -33,8 +33,8 @@
#include <cassert>
xmrig::Controller::Controller(Process *process) :
Base(process)
xmrig::Controller::Controller() :
Base()
{
}

View file

@ -38,9 +38,9 @@ class Network;
class Controller : public Base
{
public:
XMRIG_DISABLE_COPY_MOVE_DEFAULT(Controller)
XMRIG_DISABLE_COPY_MOVE(Controller)
Controller(Process *process);
Controller();
~Controller() override;
int init() override;

View file

@ -19,7 +19,6 @@
#include <algorithm>
#include <cinttypes>
#include <cstring>
#include <uv.h>
#include "core/config/Config.h"