1From 45ea097e864e566771d756c92619e984815acd1e Mon Sep 17 00:00:00 2001
2From: Nathan Moinvaziri <nathan@nathanm.com>
3Date: Tue, 19 Dec 2023 14:35:05 -0800
4Subject: [PATCH] Fixed missing include for std::find_if.
5
6Throws an error when compiling on Windows.
7
8Upstream-Status: Backport [https://github.com/google/breakpad/commit/898a997855168c0e6a689072fefba89246271a5d]
9Change-Id: Ieb34c00cf199aaa1b45a440086c48b8ed363b3c7
10Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5137658
11Reviewed-by: Ivan Penkov <ivanpe@chromium.org>
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 src/common/module.cc | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/src/common/module.cc b/src/common/module.cc
18index 0eb5aad8..b6f5da7e 100644
19--- a/src/common/module.cc
20+++ b/src/common/module.cc
21@@ -42,6 +42,7 @@
22 #include <stdio.h>
23 #include <string.h>
24
25+#include <algorithm>
26 #include <functional>
27 #include <iostream>
28 #include <memory>
29--
302.43.0
31
32