diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-20 21:54:26 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-20 21:54:26 +0100 |
commit | b73e13d70477549bfb970fc4fc005473223a4402 (patch) | |
tree | 849a167c41b197d769666d093ed18cc386aafa5e /src/Log.h | |
parent | ca4fb30104c5f883794c40f2516636447ea5dd0f (diff) | |
download | dabmux-b73e13d70477549bfb970fc4fc005473223a4402.tar.gz dabmux-b73e13d70477549bfb970fc4fc005473223a4402.tar.bz2 dabmux-b73e13d70477549bfb970fc4fc005473223a4402.zip |
fix some cppcheck errors
Diffstat (limited to 'src/Log.h')
-rw-r--r-- | src/Log.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ class Logger { /* Log the message to all backends */ void log(log_level_t level, const char* fmt, ...); - void logstr(log_level_t level, const std::string message); + void logstr(log_level_t level, std::string message); /* Return a LogLine for the given level * so that you can write etiLog.level(info) << "stuff = " << 21 */ |