See https://github.com/fplll/fplll/issues/444 --- fplll-5.3.3-checkout.old/fplll/enum/enumerate_base.h 2020-09-23 13:55:27.833769823 +0200 +++ fplll-5.3.3-checkout/fplll/enum/enumerate_base.h 2020-09-23 13:56:14.313771769 +0200 @@ -127,10 +127,10 @@ int rounding_backup; void save_rounding() { - rounding_backup = std::fegetround(); - std::fesetround(FE_TONEAREST); + rounding_backup = fegetround(); + fesetround(FE_TONEAREST); } - void restore_rounding() { std::fesetround(rounding_backup); } + void restore_rounding() { fesetround(rounding_backup); } inline bool next_pos_up() { value='3d2d11973579e505c7c41ea4638dd5a7ddbb7e31'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
AgeCommit message (Expand)Author
2021-09-14guix: Replace 'define-public'....This is a followup to 8531997d2a1e10d574a6e9ab70bc86ade6af4733. * guix.scm: Use #:re-export-and-replace for 'define-public'. Ludovic Courtès
2021-06-29(guix) no longer pulls in (guix ftp-client)....That choice was made in 2014 and never made much sense. * guix.scm (%public-modules): Remove 'ftp-client'. Ludovic Courtès