1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-06-20 15:41:34 +00:00

[General] Use C++11 way to delete Ctor

This commit is contained in:
Koncord 2017-06-27 22:56:02 +08:00
parent 5b2cab4c6b
commit ed3e089126

View file

@ -51,9 +51,9 @@ public:
private:
Log(int logLevel);
/// Not implemented
Log(const Log &);
Log(const Log &) = delete;
/// Not implemented
Log &operator=(Log &);
Log &operator=(Log &) = delete;
static Log *sLog;
int logLevel;
};