Sync changes.

This commit is contained in:
XMRig 2019-02-18 19:02:40 +07:00
parent b7c17cf1a0
commit 84f85b4200
3 changed files with 14 additions and 22 deletions

View file

@ -47,9 +47,9 @@ class xmrig::ControllerPrivate
{
public:
inline ControllerPrivate(Process *process) :
config(nullptr),
network(nullptr),
process(process),
config(nullptr)
process(process)
{}
@ -60,10 +60,10 @@ public:
}
Config *config;
Network *network;
Process *process;
std::vector<IControllerListener *> listeners;
Config *config;
};