1From 898a997855168c0e6a689072fefba89246271a5d 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 8Change-Id: Ieb34c00cf199aaa1b45a440086c48b8ed363b3c7 9Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5137658 10Reviewed-by: Ivan Penkov <ivanpe@chromium.org> 11Upstream: https://github.com/google/breakpad/commit/898a997855168c0e6a689072fefba89246271a5d 12Signed-off-by: Kadambini Nema <kadambini.nema@gmail.com> 13--- 14 15diff --git a/src/common/module.cc b/src/common/module.cc 16index 0eb5aad..b6f5da7 100644 17--- a/src/common/module.cc 18+++ b/src/common/module.cc 19@@ -42,6 +42,7 @@ 20 #include <stdio.h> 21 #include <string.h> 22 23+#include <algorithm> 24 #include <functional> 25 #include <iostream> 26 #include <memory> 27