diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-12-03 21:14:24 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-12-03 21:15:22 +0100 |
commit | 1f6eea62f46789c0d3ebe7da133ccad2e59c89c8 (patch) | |
tree | d84086c52ea913fea84aa33d2ef0f6284c24d8e7 /src/irc | |
parent | 700a6c7bc39aa48af5037ecbb9778b20fb6f87df (diff) | |
download | biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.tar.gz biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.tar.bz2 biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.tar.xz biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.zip |
Add an ad-hoc command to disconnect a user from one or more IRC server
fix #3077
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/irc_message.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/irc_message.hpp b/src/irc/irc_message.hpp index a0bd772..01e78cf 100644 --- a/src/irc/irc_message.hpp +++ b/src/irc/irc_message.hpp @@ -8,9 +8,9 @@ class IrcMessage { public: - explicit IrcMessage(std::string&& line); - explicit IrcMessage(std::string&& prefix, std::string&& command, std::vector<std::string>&& args); - explicit IrcMessage(std::string&& command, std::vector<std::string>&& args); + IrcMessage(std::string&& line); + IrcMessage(std::string&& prefix, std::string&& command, std::vector<std::string>&& args); + IrcMessage(std::string&& command, std::vector<std::string>&& args); ~IrcMessage(); std::string prefix; |