From 0f76e72de1533f58c5fe1a5956c5ef5b4485d550 Mon Sep 17 00:00:00 2001 From: jas0n098 Date: Mon, 3 Jul 2023 15:33:33 +0000 Subject: [PATCH] Fix build failure with gcc-13 std::uintmax_t and std::uintptr_t need --- orbis-kernel/src/utils/Logs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/orbis-kernel/src/utils/Logs.cpp b/orbis-kernel/src/utils/Logs.cpp index 9eaf86aa6..555f2b512 100644 --- a/orbis-kernel/src/utils/Logs.cpp +++ b/orbis-kernel/src/utils/Logs.cpp @@ -4,6 +4,7 @@ #include #include #include +#include static void append_hex(std::string &out, std::uintmax_t value) { std::ostringstream buf;