From f9d58a44871931ef9b60354fade6f8d7b24cc668 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flo@geekplace.eu>
Date: Sun, 23 Apr 2023 12:44:59 +0200
Subject: [PATCH] utils/sha1.cpp: add missing <cstdint> include

Fixes compilation with GCC 13.

Downstream Gentoo bug: https://bugs.gentoo.org/902471
---
 src/utils/sha1.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/utils/sha1.cpp b/src/utils/sha1.cpp
index 1a0d185..47378c9 100644
--- a/src/utils/sha1.cpp
+++ b/src/utils/sha1.cpp
@@ -13,6 +13,7 @@
 # include <vector>
 # include <iomanip>
 # include <sstream>
+# include <cstdint>
 #endif
 
 std::string sha1(const std::string& input)
-- 
GitLab