Skip to content

Commit 4b243b5

Browse files
Shi Pujintargos
Shi Pujin
authored andcommitted
deps: V8: cherry-pick 9721082687c9
Original commit message: heap: Add missing <algorithm> include for std::remove GCC 14 changes some internal includes within libstdc++ so this transient include gets lost. Include <algorithm> explicitly for std::remove. Change-Id: Iab8a2c751a0f9c9dc6a770d6296ad6de724ef3bb Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4583222 Reviewed-by: Michael Lippautz <[email protected]> Commit-Queue: Michael Lippautz <[email protected]> Cr-Commit-Position: refs/heads/main@{#88037} PR-URL: #50077 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 9d3cdcb commit 4b243b5

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.22',
39+
'v8_embedder_string': '-node.23',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ Sakthipriyan Vairamani (thefourtheye) <[email protected]>
239239
Sander Mathijs van Veen <[email protected]>
240240
Sandro Santilli <[email protected]>
241241
Sanjoy Das <[email protected]>
242+
Sam James <[email protected]>
242243
Seo Sanghyeon <[email protected]>
243244
Shawn Anastasio <[email protected]>
244245
Shawn Presser <[email protected]>

deps/v8/src/heap/cppgc/stats-collector.h

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <stddef.h>
99
#include <stdint.h>
1010

11+
#include <algorithm>
1112
#include <atomic>
1213
#include <vector>
1314

0 commit comments

Comments
 (0)