From b620f2f02db4755f988f24522f4d77d890f6421d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Mon, 28 May 2018 14:17:19 +0200 Subject: [PATCH] Fix a -Wcatch-value warning reported by GCC 8.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ``` src/translation.cpp:43:16: warning: interception du type polymorphique « class std::out_of_range » par valeur [-Wcatch-value=] } catch (std::out_of_range) { ```· --- src/translation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/translation.cpp b/src/translation.cpp index 31efca41..60531be6 100644 --- a/src/translation.cpp +++ b/src/translation.cpp @@ -40,7 +40,7 @@ const std::wstring &Translations::getTranslation( std::wstring key = textdomain + L"|" + s; try { return m_translations.at(key); - } catch (std::out_of_range) { + } catch (const std::out_of_range &) { warningstream << "Translations: can't find translation for string \"" << wide_to_utf8(s) << "\" in textdomain \"" << wide_to_utf8(textdomain) << "\"" << std::endl; @@ -147,4 +147,4 @@ void Translations::loadTranslation(const std::string &data) m_translations[textdomain + L"|" + oword1] = oword2; } -} \ No newline at end of file +}