summaryrefslogtreecommitdiff
path: root/src/irc/irc_message.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/irc_message.hpp')
-rw-r--r--src/irc/irc_message.hpp6
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;