Remove C++11 in Log.h

This commit is contained in:
Koncord 2016-08-15 21:45:49 +08:00
parent b3320c7bb9
commit e9ee9c8b3b

View file

@ -33,9 +33,11 @@ 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;
static Log * sLog;
/// Not implemented
Log( const Log& );
/// Not implemented
Log& operator=(Log& );
static Log *sLog;
int logLevel;
};