Skip to content

Commit 2e57b11

Browse files
Matthias Koeppedimpase
authored andcommitted
1 parent f2c1f83 commit 2e57b11

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

build/pkgs/givaro/patches/218.patch

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
From c7744bb133496cd7ac04688f345646d505e1bf52 Mon Sep 17 00:00:00 2001
2+
From: "Benjamin A. Beasley" <[email protected]>
3+
Date: Thu, 19 Jan 2023 09:12:22 -0500
4+
Subject: [PATCH] Add missing #include <cstdint> for (u)int64_t
5+
6+
Fixes failure to compile on GCC 13.
7+
---
8+
src/library/poly1/givdegree.h | 2 ++
9+
1 file changed, 2 insertions(+)
10+
11+
diff --git a/src/library/poly1/givdegree.h b/src/library/poly1/givdegree.h
12+
index 3753a425..eb85a0dd 100644
13+
--- a/src/library/poly1/givdegree.h
14+
+++ b/src/library/poly1/givdegree.h
15+
@@ -19,6 +19,8 @@
16+
#ifndef __GIVARO_poly1degree_H
17+
#define __GIVARO_poly1degree_H
18+
19+
+#include <cstdint>
20+
+
21+
#include <iostream>
22+
23+
namespace Givaro {

0 commit comments

Comments
 (0)