From 3d145c656d0c8dc8892d09d7a090f5d1368f7a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Fri, 21 Apr 2017 13:02:32 +0200 Subject: Disable clang encoding warnings for utf8 encoding/decoding map. --- plugingui/utf8.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugingui/utf8.cc b/plugingui/utf8.cc index a14fd43..770d115 100644 --- a/plugingui/utf8.cc +++ b/plugingui/utf8.cc @@ -26,6 +26,9 @@ */ #include "utf8.h" +// Disable clang encoding warnings for creation of this map. +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Winvalid-source-encoding" UTF8::UTF8() { // Encode Map @@ -290,6 +293,7 @@ UTF8::UTF8() // FIXME: This is just a hack to make Goran Mekic's name work. map_decode["Ä\x87"] = "c"; } +#pragma clang diagnostic pop std::string UTF8::fromLatin1(std::string const& s) { -- cgit v1.2.3