mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-27 19:58:26 -07:00
Missing function declaration. Builds with -std=gnu23 on gcc-14 Closes: https://bugs.gentoo.org/886457 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40332 Signed-off-by: Sam James <sam@gentoo.org>
14 lines
473 B
Diff
14 lines
473 B
Diff
Fix missing function declaration, so package could build with modern compilers
|
|
https://bugs.gentoo.org/886457
|
|
--- a/src/aprx/estim.c
|
|
+++ b/src/aprx/estim.c
|
|
@@ -41,6 +41,8 @@
|
|
Bvec *u, Bvec *ud, Bvec *r);
|
|
VEXTERNC void Aprx_estFaceBump(Aprx *thee, int color,
|
|
Bvec *u, Bvec *ud, Bvec *r);
|
|
+VPUBLIC int Aprx_markRefineDorfler (Aprx *thee, double percentToRefine,
|
|
+ int color);
|
|
|
|
/*
|
|
* ***************************************************************************
|