diff options
Diffstat (limited to 'src/chatlogger.h')
-rw-r--r-- | src/chatlogger.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/chatlogger.h b/src/chatlogger.h index 421326e30..62ee4b2f7 100644 --- a/src/chatlogger.h +++ b/src/chatlogger.h @@ -50,8 +50,9 @@ class ChatLogger final void log(std::string name, std::string str); - void loadLast(std::string name, std::list<std::string> &list, - const unsigned n) const; + void loadLast(std::string name, + std::list<std::string> &list, + const unsigned int n) const; std::string getDir() const A_WARN_UNUSED; @@ -72,7 +73,8 @@ class ChatLogger final void setLogDir(const std::string &logDir); - static void writeTo(std::ofstream &file, const std::string &str); + static void writeTo(std::ofstream &file, + const std::string &str); std::ofstream mLogFile; std::string mLogDir; |