mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
(macOS) Suppressed a compiler warning
This commit is contained in:
parent
4a6732876c
commit
c06f598d80
|
@ -7,8 +7,11 @@
|
|||
// Convert characters to Unicode, upper-/lowercase conversion, string formatting etc.
|
||||
//
|
||||
|
||||
// Suppress codecvt deprecation warnings.
|
||||
#if defined(_MSC_VER) // MSVC compiler.
|
||||
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
||||
#elif defined(__APPLE__)
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||
#endif
|
||||
|
||||
#include "utils/StringUtil.h"
|
||||
|
|
Loading…
Reference in a new issue