File: gcc-15.patch

package info (click to toggle)
phast 1.7%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,124 kB
  • sloc: ansic: 54,210; makefile: 364; sh: 348; perl: 321
file content (14 lines) | stat: -rw-r--r-- 505 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Fix function declaration to compile with gcc-15
Author: Nilesh Patra <nilesh@iki.fi>
Last-Update: 2025-09-20
--- a/include/phast/phylo_fit.h
+++ b/include/phast/phylo_fit.h
@@ -66,7 +66,7 @@
 };
 
 
-struct phyloFit_struct* phyloFit_struct_new();
+struct phyloFit_struct* phyloFit_struct_new(int);
 int run_phyloFit(struct phyloFit_struct *pf);
 void print_post_prob_stats(TreeModel *mod, MSA *msa, char *output_fname_root, 
                            int do_bases, int do_expected_nsubst,