diff options
author | louiz’ <louiz@louiz.org> | 2016-11-16 20:30:16 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-11-16 20:30:16 +0100 |
commit | b5a7c66bea8f0bced4bb4ce5c52f17bc30317ec4 (patch) | |
tree | d461f159aee82745178c477ead1964544c0af00a /src/identd | |
parent | 9dd0cf8f7aee5c6d3be163246de9f0a5282e02e5 (diff) | |
download | biboumi-b5a7c66bea8f0bced4bb4ce5c52f17bc30317ec4.tar.gz biboumi-b5a7c66bea8f0bced4bb4ce5c52f17bc30317ec4.tar.bz2 biboumi-b5a7c66bea8f0bced4bb4ce5c52f17bc30317ec4.tar.xz biboumi-b5a7c66bea8f0bced4bb4ce5c52f17bc30317ec4.zip |
fix an “unused parameter” warning
Diffstat (limited to 'src/identd')
-rw-r--r-- | src/identd/identd_socket.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/identd/identd_socket.hpp b/src/identd/identd_socket.hpp index 6d6cc1d..98077f2 100644 --- a/src/identd/identd_socket.hpp +++ b/src/identd/identd_socket.hpp @@ -22,7 +22,7 @@ class IdentdSocket: public TCPSocketHandler std::string generate_answer(const BiboumiComponent& biboumi, uint16_t local, uint16_t remote); void parse_in_buffer(const std::size_t size) override final; - void on_connection_close(const std::string& message) override final + void on_connection_close(const std::string&) override final {} bool is_connected() const override final |