aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-09-11 21:35:07 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-09-12 18:13:24 -0700
commitf16855b9d70c747423ee81f27d619694856d365b (patch)
treedf242ab0fcbb17c0dcc0c640112749642b848383 /lib/std/math.zig
parente323cf1264f390911dcc2efea71d46be1d631d92 (diff)
downloadzig-f16855b9d70c747423ee81f27d619694856d365b.tar.gz
zig-f16855b9d70c747423ee81f27d619694856d365b.zip
remove pointless discards
Diffstat (limited to 'lib/std/math.zig')
-rw-r--r--lib/std/math.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig
index d1c9326ae2..f519979349 100644
--- a/lib/std/math.zig
+++ b/lib/std/math.zig
@@ -171,7 +171,6 @@ pub fn approxEqRel(comptime T: type, x: T, y: T, tolerance: T) bool {
}
pub fn approxEq(comptime T: type, x: T, y: T, tolerance: T) bool {
- _ = T;
_ = x;
_ = y;
_ = tolerance;