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() { nput type='hidden' name='id' value='2d11361a972f2835eaeeadff8f5215d193edfb7a'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-describe.sh
AgeCommit message (Expand)Author
2022-09-04guix describe: Adjust test to latest changes....This is a followup to 64a070717c3de32332201df5d6d2d52a7f99dce9. * tests/guix-describe.sh: Add trailing slash when checking URL. Ludovic Courtès