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
|
From c1ebddbf24b55d145a34722aaba79f0eb7e4d13b Mon Sep 17 00:00:00 2001
From: Marius Gripsgard <mariogrip@debian.org>
Date: Thu, 27 Jul 2023 03:17:55 +0200
Subject: [PATCH] Add missing headers for gcc 13
---
src/biometry/util/cli.h | 1 +
src/biometry/util/not_reachable.h | 1 +
2 files changed, 2 insertions(+)
--- a/src/biometry/util/cli.h
+++ b/src/biometry/util/cli.h
@@ -33,6 +33,7 @@
#include <string>
#include <unordered_map>
#include <vector>
+#include <cstdint>
namespace biometry
{
--- a/src/biometry/util/not_reachable.h
+++ b/src/biometry/util/not_reachable.h
@@ -25,6 +25,7 @@
#include <cstdint>
#include <stdexcept>
#include <string>
+#include <cstdint>
namespace biometry
{
|