aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math.zig
diff options
context:
space:
mode:
authorexpikr <77922942+expikr@users.noreply.github.com>2024-05-30 03:58:05 -0600
committerGitHub <noreply@github.com>2024-05-30 09:58:05 +0000
commit103b885fc6660cad4bc596b6f43fad3905f4c1aa (patch)
tree1f8dcdc92b27c737fe3e01277e9ca79f2c4e0c38 /lib/std/math.zig
parentb2588de6ccdfee87542e2bd18b74d3a14e349d95 (diff)
downloadzig-103b885fc6660cad4bc596b6f43fad3905f4c1aa.tar.gz
zig-103b885fc6660cad4bc596b6f43fad3905f4c1aa.zip
math.hypot: fix incorrect over/underflow behavior (#19472)
Diffstat (limited to 'lib/std/math.zig')
-rw-r--r--lib/std/math.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig
index 7d9b400fc4..c7bd4fb9f4 100644
--- a/lib/std/math.zig
+++ b/lib/std/math.zig
@@ -52,6 +52,7 @@ pub const floatTrueMin = @import("math/float.zig").floatTrueMin;
pub const floatMin = @import("math/float.zig").floatMin;
pub const floatMax = @import("math/float.zig").floatMax;
pub const floatEps = @import("math/float.zig").floatEps;
+pub const floatEpsAt = @import("math/float.zig").floatEpsAt;
pub const inf = @import("math/float.zig").inf;
pub const nan = @import("math/float.zig").nan;
pub const snan = @import("math/float.zig").snan;