From 3339ce2cc0be9cc15a6cd9571025846edd1bef20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 23 Sep 2019 22:17:27 +0200 Subject: Trivial little naming changes --- src/irc/irc_client.cpp | 2 +- src/irc/irc_client.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/irc') diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp index 0b5715e..de38d42 100644 --- a/src/irc/irc_client.cpp +++ b/src/irc/irc_client.cpp @@ -398,7 +398,7 @@ void IrcClient::parse_in_buffer(const size_t) } } -void IrcClient::actual_send(std::pair message_pair) +void IrcClient::actual_send(std::pair&& message_pair) { const IrcMessage& message = message_pair.first; const MessageCallback& callback = message_pair.second; diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp index 674f3ff..cfb3d21 100644 --- a/src/irc/irc_client.hpp +++ b/src/irc/irc_client.hpp @@ -92,7 +92,7 @@ public: */ void send_message(IrcMessage message, MessageCallback callback={}, bool throttle=true); void send_raw(const std::string& txt); - void actual_send(std::pair message_pair); + void actual_send(std::pair&& message_pair); /** * Send the PONG irc command */ -- cgit v1.2.3