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 <memory.h> include with <cstring>, which is guaranteed to contain strlen.
This commit is contained in:
parent
c902316ee9
commit
46f5c48410
|
@ -31,7 +31,7 @@
|
||||||
#define CEF_INCLUDE_INTERNAL_CEF_STRING_WRAPPERS_H_
|
#define CEF_INCLUDE_INTERNAL_CEF_STRING_WRAPPERS_H_
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory.h>
|
#include <cstring>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "include/internal/cef_string_types.h"
|
#include "include/internal/cef_string_types.h"
|
||||||
|
|
Loading…
Reference in New Issue