archrelease: copy trunk to community-any
[ArchLinux/community.git] / electron7 / trunk / perfetto-gcc10.patch
blobe23c938d0e50fd4f6c893643c8558b8df673ed6c
1 From 0e7ca0bf9872932322563e70bcf84eb033ffde4f Mon Sep 17 00:00:00 2001
2 From: Chisoon Jeong <chisoon.jeong@lge.com>
3 Date: Tue, 24 Mar 2020 19:46:20 +0900
4 Subject: [PATCH] Add #include <stdint.h> in
5 include/perfetto/base/task_runner.h
7 Depending on compilation environment, task_runner.h|cc is
8 not compiled due to missing stdint.h. This change includes stdint.h in
9 task_runner.h to fix this issue.
11 Change-Id: I6dcfbd4ad62cbd287b8e75e306930ad00731048a
12 ---
13 include/perfetto/base/task_runner.h | 2 ++
14 1 file changed, 2 insertions(+)
16 diff --git a/include/perfetto/base/task_runner.h b/include/perfetto/base/task_runner.h
17 index cf6040123..040aab2b7 100644
18 --- a/include/perfetto/base/task_runner.h
19 +++ b/include/perfetto/base/task_runner.h
20 @@ -17,6 +17,8 @@
21 #ifndef INCLUDE_PERFETTO_BASE_TASK_RUNNER_H_
22 #define INCLUDE_PERFETTO_BASE_TASK_RUNNER_H_
24 +#include <stdint.h>
26 #include <functional>
28 #include "perfetto/base/export.h"