Blob Blame History Raw
From 37ac6654194f90db625e760dcb2d48fd7938ba6d Mon Sep 17 00:00:00 2001
From: scott snyder <sss@karma>
Date: Tue, 29 Nov 2022 22:05:39 -0500
Subject: [PATCH] Fix compilation with gcc13.

Missing #include <cstdint>.
---
 math/mathcore/inc/Math/Random.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/math/mathcore/inc/Math/Random.h b/math/mathcore/inc/Math/Random.h
index 87eaaee5af..23bfabc4a1 100644
--- a/math/mathcore/inc/Math/Random.h
+++ b/math/mathcore/inc/Math/Random.h
@@ -25,6 +25,7 @@
 
 #include <string>
 #include <vector>
+#include <cstdint>
 
 
 namespace ROOT {
-- 
2.39.0