Andrew Geissler | c5535c9 | 2023-01-27 16:10:19 -0600 | [diff] [blame] | 1 | From b07f6ecd6ab83b788301a555dc546b9a5c9dd8a2 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Wed, 25 Jan 2023 19:19:34 -0800 |
| 4 | Subject: [PATCH] Include missing <cstdint> |
| 5 | |
| 6 | This error is seen with gcc-13 where include headers are not implicitly |
| 7 | included [1] |
| 8 | |
| 9 | Fixes errors e.g. |
| 10 | error: 'uint32_t' does not name a type |
| 11 | |
| 12 | [1] https://www.gnu.org/software/gcc/gcc-13/porting_to.html |
| 13 | |
| 14 | Upstream-Status: Submitted [https://github.com/KhronosGroup/VK-GL-CTS/pull/378] |
| 15 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 16 | --- |
| 17 | framework/common/tcuDefs.hpp | 1 + |
| 18 | 1 file changed, 1 insertion(+) |
| 19 | |
| 20 | diff --git a/framework/common/tcuDefs.hpp b/framework/common/tcuDefs.hpp |
| 21 | index ad3d0736d..6dfac10fb 100644 |
| 22 | --- a/framework/common/tcuDefs.hpp |
| 23 | +++ b/framework/common/tcuDefs.hpp |
| 24 | @@ -26,6 +26,7 @@ |
| 25 | #include "deDefs.hpp" |
| 26 | #include "qpTestLog.h" |
| 27 | |
| 28 | +#include <cstdint> |
| 29 | #include <string> |
| 30 | #include <stdexcept> |
| 31 | |
| 32 | -- |
| 33 | 2.39.1 |
| 34 | |