mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-13 03:05:40 +02:00
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 9721082687c9529fe6ae3c5304dcf079158e8a77 Mon Sep 17 00:00:00 2001
|
|
From: Sam James <sam@gentoo.org>
|
|
Date: Sun, 04 Jun 2023 04:15:16 +0100
|
|
Subject: [PATCH] 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 <mlippautz@chromium.org>
|
|
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
|
|
Cr-Commit-Position: refs/heads/main@{#88037}
|
|
---
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/v8/src/heap/cppgc/stats-collector.h b/qtwebengine/src/3rdparty/chromium/v8/src/heap/cppgc/stats-collector.h
|
|
index 2cf728489d..d8414ae3c6 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/v8/src/heap/cppgc/stats-collector.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/v8/src/heap/cppgc/stats-collector.h
|
|
@@ -8,6 +8,7 @@
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
+#include <algorithm>
|
|
#include <atomic>
|
|
#include <vector>
|