From be022e26bc2518e7b5326fc0855e3104ffc837b4 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 7 Jun 2023 13:22:59 +0300 Subject: [PATCH] mac: Fix char16_t declaration error with Xcode 14.2 (fixes #3526) --- include/internal/cef_string_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/cef_string_types.h b/include/internal/cef_string_types.h index 4ff5c5530..ee3308b5c 100644 --- a/include/internal/cef_string_types.h +++ b/include/internal/cef_string_types.h @@ -37,7 +37,7 @@ // On macOS, is only available with Xcode 14.3+. #if __has_include() #include -#else +#elif !defined(__cplusplus) #include typedef uint_least16_t char16_t; #endif