aboutsummaryrefslogtreecommitdiffstats
path: root/include/logging.h
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-08-27 18:03:49 +0900
committeripknHama <ipknhama@gmail.com>2016-08-27 18:03:49 +0900
commite161da45e08a2eaaec747a784020d69f8223418d (patch)
tree0e5c326565e4ddc8fd26d05715666faaf757315f /include/logging.h
parentabc36e1b3ab2edf30ea07ea2a82a395ce312f6f6 (diff)
downloadcrow-e161da45e08a2eaaec747a784020d69f8223418d.tar.gz
crow-e161da45e08a2eaaec747a784020d69f8223418d.zip
Remove warnings: manually applying #101, #104
Diffstat (limited to 'include/logging.h')
-rw-r--r--include/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/logging.h b/include/logging.h
index 41ac0ab..13cdad2 100644
--- a/include/logging.h
+++ b/include/logging.h
@@ -35,7 +35,7 @@ namespace crow
class CerrLogHandler : public ILogHandler {
public:
- void log(std::string message, LogLevel level) override {
+ void log(std::string message, LogLevel /*level*/) override {
std::cerr << message;
}
};