From 8e0b80aa369df7d1142053f077df928106c6ce8c Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Wed, 4 Apr 2018 07:42:40 +0200 Subject: Fix last performance-type-promotion-in-math-fn problems --- src/chat.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/chat.cpp') diff --git a/src/chat.cpp b/src/chat.cpp index cc0980230..c3ed59804 100644 --- a/src/chat.cpp +++ b/src/chat.cpp @@ -402,7 +402,7 @@ void ChatPrompt::input(const std::wstring &str) m_nick_completion_end = 0; } -void ChatPrompt::addToHistory(std::wstring line) +void ChatPrompt::addToHistory(const std::wstring &line) { if (!line.empty() && (m_history.size() == 0 || m_history.back() != line)) { @@ -426,7 +426,7 @@ void ChatPrompt::clear() m_nick_completion_end = 0; } -std::wstring ChatPrompt::replace(std::wstring line) +std::wstring ChatPrompt::replace(const std::wstring &line) { std::wstring old_line = m_line; m_line = line; @@ -660,7 +660,7 @@ ChatBackend::ChatBackend(): { } -void ChatBackend::addMessage(std::wstring name, std::wstring text) +void ChatBackend::addMessage(const std::wstring &name, std::wstring text) { // Note: A message may consist of multiple lines, for example the MOTD. text = translate_string(text); -- cgit v1.2.3