mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-18 15:36:59 +02:00
37 lines
916 B
Diff
37 lines
916 B
Diff
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(+)
|
|
|
|
diff --git a/src/biometry/util/cli.h b/src/biometry/util/cli.h
|
|
index b591ba5..4823fa9 100644
|
|
--- a/src/biometry/util/cli.h
|
|
+++ b/src/biometry/util/cli.h
|
|
@@ -32,6 +32,7 @@
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
+#include <cstdint>
|
|
|
|
namespace biometry
|
|
{
|
|
diff --git a/src/biometry/util/not_reachable.h b/src/biometry/util/not_reachable.h
|
|
index 1d6d120..8a6176b 100644
|
|
--- a/src/biometry/util/not_reachable.h
|
|
+++ b/src/biometry/util/not_reachable.h
|
|
@@ -24,6 +24,7 @@
|
|
|
|
#include <stdexcept>
|
|
#include <string>
|
|
+#include <cstdint>
|
|
|
|
namespace biometry
|
|
{
|
|
--
|
|
2.40.1
|
|
|