1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-06-21 18:11: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: private:
Log(int logLevel); Log(int logLevel);
/// Not implemented /// Not implemented
Log(const Log &); Log(const Log &) = delete;
/// Not implemented /// Not implemented
Log &operator=(Log &); Log &operator=(Log &) = delete;
static Log *sLog; static Log *sLog;
int logLevel; int logLevel;
}; };