1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Fixes needed for GCC-15
Author: Alastair McKinstry <mckinstry@debian.org>
Last-Updated: 2025-09-06
Forwarded: no
Bug-Origin: https://bugs.debian.org/1097351
i
--- a/src/common/ObjectParser.cc
+++ b/src/common/ObjectParser.cc
@@ -14,6 +14,7 @@
/// @date Jun 2012
#include <codecvt>
+#include <cstdint>
#include <locale>
#include "ObjectParser.h"
--- a/src/visualisers/SegmentJoiner.cc
+++ b/src/visualisers/SegmentJoiner.cc
@@ -12,6 +12,7 @@
#include "magics.h"
#include <algorithm>
+#include <cstdint>
#include <cmath>
#include <limits>
#include "MagException.h"
--- a/src/drivers/BaseDriverImages.h
+++ b/src/drivers/BaseDriverImages.h
@@ -19,6 +19,7 @@
*/
+#include <cstdint>
#include "magics.h"
#ifdef HAVE_CAIRO
|