root/root-add-missing-include-cstdint.patch
Mattias Ellert a08fcbc5ad Update to 6.28.00
ROOT now uses llvm/clang version 13 (updated from version 9)
Clean up specfile by removing EPEL 7 conditionals
Drop dataframe, roofit and tmva-sofieparser on EPEL 8 ppc64le due to
  "pure virtual method called" errors
Split the root-geom sub-package into three separate sub-packages:
  root-geom, root-geom-builder and root-geom-painter
Enable uring support in EPEL 9 (liburing now available)
New sub-packages: root-geom-webviewer, root-roofit-jsoninterface,
  root-testsupport, root-tree-ntuple-utils, root-tree-webviewer,
  root-xroofit
Dropped patches: 31
New patches: 17
Updated patches: 4
2023-03-19 07:53:00 +01:00

38 lines
1.1 KiB
Diff

From 87d302b9192538e18645f4c3efadc70e9a20a913 Mon Sep 17 00:00:00 2001
From: Mattias Ellert <mattias.ellert@physics.uu.se>
Date: Fri, 20 Jan 2023 06:34:11 +0100
Subject: [PATCH] Add missing #include <cstdint>
Fixes compilation error with gcc 13
---
tree/ntuple/v7/inc/ROOT/RDaos.hxx | 1 +
tree/ntuple/v7/test/CustomStruct.hxx | 1 +
2 files changed, 2 insertions(+)
diff --git a/tree/ntuple/v7/inc/ROOT/RDaos.hxx b/tree/ntuple/v7/inc/ROOT/RDaos.hxx
index 69ee9ba99d..6367dfa93f 100644
--- a/tree/ntuple/v7/inc/ROOT/RDaos.hxx
+++ b/tree/ntuple/v7/inc/ROOT/RDaos.hxx
@@ -22,6 +22,7 @@
#include <daos.h>
+#include <cstdint>
#include <functional>
#include <memory>
#include <string>
diff --git a/tree/ntuple/v7/test/CustomStruct.hxx b/tree/ntuple/v7/test/CustomStruct.hxx
index a975b5ce5d..be08eba924 100644
--- a/tree/ntuple/v7/test/CustomStruct.hxx
+++ b/tree/ntuple/v7/test/CustomStruct.hxx
@@ -1,6 +1,7 @@
#ifndef ROOT7_RNTuple_Test_CustomStruct
#define ROOT7_RNTuple_Test_CustomStruct
+#include <cstdint>
#include <string>
#include <variant>
#include <vector>
--
2.39.1