From d812310c5b50cbec7f1c93d7fa131c820e156559 Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Sun, 5 Nov 2023 14:05:15 -0500 Subject: [PATCH] [GCC] Compatibility fix for GCC 13 (#3677) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes ` ‘uint64_t’ does not name a type ` error under GCC 13 --- common/serverinfo.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/serverinfo.h b/common/serverinfo.h index 7405714b3..d62549f11 100644 --- a/common/serverinfo.h +++ b/common/serverinfo.h @@ -19,6 +19,7 @@ #include #include +#include typedef struct eq_cpu_info_s { std::string model;