Make copy constructor private for the Log class

This commit is contained in:
Gunnar Beutner 2015-03-02 12:42:33 +01:00
parent b6ca140ee2
commit 81e821b60c
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ private:
std::ostringstream m_Buffer;
Log(void);
Log(const Log& other);
Log& operator=(const Log& rhs);
};