diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2023-08-06 09:39:44 +0300 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2023-08-06 09:39:44 +0300 |
| commit | 378a0d6dd0f78ea6d3b70df9e61d891739aed504 (patch) | |
| tree | 19eeae6bd2e0d10394da75059a3f5389c9fdbd9d | |
| parent | f48402ce651694f808c9e9e09285faaca020a3ab (diff) | |
mu-error.h: fix compilation
Newer gcc doesn't implicitly load cinttypes.
| -rw-r--r-- | lib/utils/mu-error.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/utils/mu-error.hh b/lib/utils/mu-error.hh index c67fc5a..acee9d6 100644 --- a/lib/utils/mu-error.hh +++ b/lib/utils/mu-error.hh @@ -21,6 +21,7 @@ #define MU_ERROR_HH__ #include <stdexcept> +#include <cinttypes> #include "mu-utils-format.hh" #include "mu-util.h" #include <glib.h> |
