commit 3d6bc090c87a19c358a8b9025d3a2b62d77ab433 parent 1e5c862d8fa7b76b69b8125d454d8f8d6a9cde25 Author: Sebastiano Tronto <sebastiano@tronto.net> Date: Mon, 28 Jul 2025 14:18:29 +0200 Tiny cleanup Diffstat:
M | src/utils/math.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/utils/math.h b/src/utils/math.h @@ -137,7 +137,7 @@ intpow(double b, uint64_t e) double r; if (e == 0) - return 1; + return 1.0; r = intpow(b, e/2);