Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe authored and dimpase committed Apr 24, 2023
1 parent f2c1f83 commit 2e57b11
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions build/pkgs/givaro/patches/218.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
From c7744bb133496cd7ac04688f345646d505e1bf52 Mon Sep 17 00:00:00 2001
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
Date: Thu, 19 Jan 2023 09:12:22 -0500
Subject: [PATCH] Add missing #include <cstdint> for (u)int64_t

Fixes failure to compile on GCC 13.
---
src/library/poly1/givdegree.h | 2 ++
1 file changed, 2 insertions(+)

diff --git a/src/library/poly1/givdegree.h b/src/library/poly1/givdegree.h
index 3753a425..eb85a0dd 100644
--- a/src/library/poly1/givdegree.h
+++ b/src/library/poly1/givdegree.h
@@ -19,6 +19,8 @@
#ifndef __GIVARO_poly1degree_H
#define __GIVARO_poly1degree_H

+#include <cstdint>
+
#include <iostream>

namespace Givaro {

0 comments on commit 2e57b11

Please sign in to comment.