blob: 294f804fb4a0cf5aa2b4bb52aa90b9baef4854f2 [file] [log] [blame]
Patrick Williams864cc432023-02-09 14:54:44 -06001From 87745a6cad0f7819ac8f8d3826f5e228ebd843c5 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 2 Feb 2023 16:39:26 -0800
4Subject: [PATCH] Include missing <cstdint>
5
6gcc 13 moved some includes around and as a result <cstdint> is no
7longer transitively included [1]. Explicitly include it
8for uintXX_t.
9
10[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
11
12Upstream-Status: Submitted [https://github.com/ARM-software/gator/pull/40]
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 daemon/xml/CurrentConfigXML.h | 1 +
16 1 file changed, 1 insertion(+)
17
18diff --git a/daemon/xml/CurrentConfigXML.h b/daemon/xml/CurrentConfigXML.h
19index 0b239fd..d9047e3 100644
20--- a/daemon/xml/CurrentConfigXML.h
21+++ b/daemon/xml/CurrentConfigXML.h
22@@ -1,6 +1,7 @@
23 /* Copyright (C) 2020-2021 by Arm Limited. All rights reserved. */
24 #pragma once
25
26+#include <cstdint>
27 #include <set>
28 #include <string>
29
30--
312.39.1
32