1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Origin: https://github.com/silnrsi/grcompiler/pull/47
From: Bastian Germann <bage@debian.org>
Date: Wed, 14 Jun 2023 14:10:37 +0200
Subject: Add missing include
Fix "error: ‘uint32_t’ was not declared in this scope"
on compiling with gcc v13.
---
test/GrcRegressionTest/CompareFontTables.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/test/GrcRegressionTest/CompareFontTables.cpp b/test/GrcRegressionTest/CompareFontTables.cpp
index b8c97e1..1ca7bef 100644
--- a/test/GrcRegressionTest/CompareFontTables.cpp
+++ b/test/GrcRegressionTest/CompareFontTables.cpp
@@ -12,6 +12,7 @@ Description:
-------------------------------------------------------------------------------*//*:End Ignore*/
#include "main.h"
+#include <cstdint>
//:>********************************************************************************************
//:> Global variables
|