From 947a2e77deaa7dfa299170266b304b384168a1c9 Mon Sep 17 00:00:00 2001 From: qqqqqqqqq Date: Fri, 8 Mar 2024 17:18:15 +0000 Subject: [PATCH] Replace non-standard memory.h with cstring (fixes #3665) cef_string_wrappers.h uses a non-standard header memory.h, which breaks the build on UCRT environments. Replace include with , which is guaranteed to contain strlen. --- include/internal/cef_string_wrappers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/cef_string_wrappers.h b/include/internal/cef_string_wrappers.h index 825552dd0..7d20eef29 100644 --- a/include/internal/cef_string_wrappers.h +++ b/include/internal/cef_string_wrappers.h @@ -31,7 +31,7 @@ #define CEF_INCLUDE_INTERNAL_CEF_STRING_WRAPPERS_H_ #pragma once -#include +#include #include #include "include/internal/cef_string_types.h"