fix msvc support for UTF_CPP_CPLUSPLUS support

This commit is contained in:
Arendelle 2024-11-10 14:20:03 +08:00
parent b26a5f718f
commit ec553b96de

View file

@ -37,7 +37,11 @@ DEALINGS IN THE SOFTWARE.
// Otherwise, trust the unreliable predefined macro __cplusplus
#if !defined UTF_CPP_CPLUSPLUS
#define UTF_CPP_CPLUSPLUS __cplusplus
#if defined _MSVC_LANG
#define UTF_CPP_CPLUSPLUS _MSVC_LANG
#else
#define UTF_CPP_CPLUSPLUS __cplusplus
#endif
#endif
#if UTF_CPP_CPLUSPLUS >= 201103L // C++ 11 or later