From ce9446465260bd108bcf554cf503f72304f4276b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Date: Sat, 21 Jan 2023 19:39:09 +0100 Subject: [PATCH] mu-error: Add missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GCC 13s libstdc++ reduced its dependency on some headers like , so it's no longer transitively included through various headers. Include it explicitly. See also: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes ../lib/utils/mu-error.hh:36:26: error: ‘uint32_t’ does not name a type 36 | static constexpr uint32_t SoftError = 1 << 23; | ^~~~~~~~ --- lib/utils/mu-error.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/mu-error.hh b/lib/utils/mu-error.hh index 55a8002c..6472ce83 100644 --- a/lib/utils/mu-error.hh +++ b/lib/utils/mu-error.hh @@ -22,6 +22,7 @@ #include #include +#include #include "mu-utils-format.hh" #include