mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
* chore: bump node in DEPS to v18.12.1 * chore: update patches * chore: add missing <algorithm> include * src: add detailed embedder process initialization AP https://github.com/nodejs/node/pull/44121 * chore: update gn build files * dns: support dns module in the snapshot https://github.com/nodejs/node/pull/44633 https://github.com/electron/electron/issues/36118 * src: fix OOB reads in process.title getter https://github.com/nodejs/node/pull/31633 * chore: fix incorrectly removed patch bit Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
21 lines
700 B
Diff
21 lines
700 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: John Kleinschmidt <jkleinsc@electronjs.org>
|
|
Date: Wed, 16 Nov 2022 16:58:45 -0500
|
|
Subject: chore: add missing <algorithm> include
|
|
|
|
https://github.com/nodejs/node/commit/4124b037743abb8f80a9d4b78a3b3f6aa64a18f9 added a call
|
|
to std::all_of, but did not add the needed header include.
|
|
|
|
diff --git a/src/inspector_socket.cc b/src/inspector_socket.cc
|
|
index 8001d893e1fdcc339d8c766c3dd2c5155b36e8cc..c7331567581be1ef884982cd4a166113f9d2fd09 100644
|
|
--- a/src/inspector_socket.cc
|
|
+++ b/src/inspector_socket.cc
|
|
@@ -6,6 +6,7 @@
|
|
|
|
#include "openssl/sha.h" // Sha-1 hash
|
|
|
|
+#include <algorithm>
|
|
#include <cstring>
|
|
#include <map>
|
|
|