diff options
| author | expikr <77922942+expikr@users.noreply.github.com> | 2024-05-30 03:58:05 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-30 09:58:05 +0000 |
| commit | 103b885fc6660cad4bc596b6f43fad3905f4c1aa (patch) | |
| tree | 1f8dcdc92b27c737fe3e01277e9ca79f2c4e0c38 /lib/std/math.zig | |
| parent | b2588de6ccdfee87542e2bd18b74d3a14e349d95 (diff) | |
| download | zig-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.zig | 1 |
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; |
