bump webkit (#15328)

Co-authored-by: dylan-conway <dylan-conway@users.noreply.github.com>
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
Co-authored-by: Ben Grant <ben@bun.sh>
Co-authored-by: Meghan Denny <meghan@bun.sh>
Co-authored-by: Ashcon Partovi <ashcon@partovi.net>
This commit is contained in:
Dylan Conway
2024-12-12 03:21:56 -08:00
committed by GitHub
parent 7991be86a3
commit 71af1950fb
46 changed files with 2531 additions and 1918 deletions

View File

@@ -3223,7 +3223,7 @@ private:
str = String({ reinterpret_cast<const UChar*>(ptr), length });
ptr += length * sizeof(UChar);
#else
UChar* characters;
std::span<UChar> characters;
str = String::createUninitialized(length, characters);
for (unsigned i = 0; i < length; ++i) {
uint16_t c;
@@ -3269,7 +3269,7 @@ private:
str = Identifier::fromString(vm, { reinterpret_cast<const UChar*>(ptr), length });
ptr += length * sizeof(UChar);
#else
UChar* characters;
std::span<UChar> characters;
str = String::createUninitialized(length, characters);
for (unsigned i = 0; i < length; ++i) {
uint16_t c;