mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-06 00:07:34 +00:00
Add a backport to fix build with latest clang Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
962 B
Diff
32 lines
962 B
Diff
From 45ea097e864e566771d756c92619e984815acd1e Mon Sep 17 00:00:00 2001
|
|
From: Nathan Moinvaziri <nathan@nathanm.com>
|
|
Date: Tue, 19 Dec 2023 14:35:05 -0800
|
|
Subject: [PATCH] Fixed missing include for std::find_if.
|
|
|
|
Throws an error when compiling on Windows.
|
|
|
|
Upstream-Status: Backport [https://github.com/google/breakpad/commit/898a997855168c0e6a689072fefba89246271a5d]
|
|
Change-Id: Ieb34c00cf199aaa1b45a440086c48b8ed363b3c7
|
|
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5137658
|
|
Reviewed-by: Ivan Penkov <ivanpe@chromium.org>
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
src/common/module.cc | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/common/module.cc b/src/common/module.cc
|
|
index 0eb5aad8..b6f5da7e 100644
|
|
--- a/src/common/module.cc
|
|
+++ b/src/common/module.cc
|
|
@@ -42,6 +42,7 @@
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
+#include <algorithm>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <memory>
|
|
--
|
|
2.43.0
|
|
|