mu-error: Add missing <cstdint> include

GCC 13s libstdc++ reduced its dependency on some headers like <cstdint>, 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;
        |                          ^~~~~~~~
This commit is contained in:
Arsen Arsenović
2023-01-21 19:39:09 +01:00
parent ad51082472
commit ce94464652

View File

@ -22,6 +22,7 @@
#include <stdexcept>
#include <string>
#include <cstdint>
#include "mu-utils-format.hh"
#include <glib.h>