mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-29 16:11:37 -04:00
Remove C++11 in Log.h
This commit is contained in:
parent
b3320c7bb9
commit
e9ee9c8b3b
@ -33,8 +33,10 @@ class Log
|
||||
void print(int level, const char *file, int line, const char *message, ...) const;
|
||||
private:
|
||||
Log(int logLevel);
|
||||
Log( const Log& ) = delete;
|
||||
Log& operator=( const Log& ) = delete;
|
||||
/// Not implemented
|
||||
Log( const Log& );
|
||||
/// Not implemented
|
||||
Log& operator=(Log& );
|
||||
static Log *sLog;
|
||||
int logLevel;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user