mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05: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.
|
// Convert characters to Unicode, upper-/lowercase conversion, string formatting etc.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
// Suppress codecvt deprecation warnings.
|
||||||
#if defined(_MSC_VER) // MSVC compiler.
|
#if defined(_MSC_VER) // MSVC compiler.
|
||||||
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "utils/StringUtil.h"
|
#include "utils/StringUtil.h"
|
||||||
|
|
Loading…
Reference in a new issue