at master 26 lines 779 B view raw
1https://github.com/flintlib/flint/pull/2411 2 3From 9957b17e6b08bd57790f7da1344b4d92eefc0b38 Mon Sep 17 00:00:00 2001 4From: Ross Smyth <18294397+RossSmyth@users.noreply.github.com> 5Date: Sun, 21 Sep 2025 15:58:57 -0400 6Subject: [PATCH] Fix duplicate symbols linker error 7 8When I run `make check` I get linker errors without 9this patch 10--- 11 src/double_interval.h | 2 +- 12 1 file changed, 1 insertion(+), 1 deletion(-) 13 14diff --git a/src/double_interval.h b/src/double_interval.h 15index a423257db2..5f685c283f 100644 16--- a/src/double_interval.h 17+++ b/src/double_interval.h 18@@ -13,7 +13,7 @@ 19 #define DOUBLE_INTERVAL_H 20 21 #ifdef DOUBLE_INTERVAL_INLINES_C 22-#define DOUBLE_INTERVAL_INLINE 23+#define DOUBLE_INTERVAL_INLINE static 24 #else 25 #define DOUBLE_INTERVAL_INLINE static inline 26 #endif