string: ignore codecvt deprecation for the moment

This commit is contained in:
Danny Robson 2023-05-15 10:36:03 +10:00
parent 3e480c7bbb
commit 5721602ef7

View File

@ -12,6 +12,11 @@
#include <codecvt> #include <codecvt>
#include <locale> #include <locale>
// HACK: cxx#xxx, codecvt is deprecated, but we don't have a good solution right now.
// Ignoring the warning is the best past forward in the short term.
#pragma GCC diagnostic push
#pragma GCC diagnostic ignore "-Wdeprecated-declaration"
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
std::string std::string
@ -39,3 +44,6 @@ strbegins (const char *restrict str,
const char *restrict prefix) { const char *restrict prefix) {
return 0 == strncmp (prefix, str, strlen (prefix)); return 0 == strncmp (prefix, str, strlen (prefix));
} }
#pragma GCC diagnostic pop