aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/math.zig')
-rw-r--r--lib/std/math.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig
index 57471e2b03..1710cdc948 100644
--- a/lib/std/math.zig
+++ b/lib/std/math.zig
@@ -427,6 +427,7 @@ test "clamp" {
// Mix of comptime and non-comptime
var i: i32 = 1;
+ _ = &i;
try testing.expect(std.math.clamp(i, 0, 1) == 1);
}
@@ -1113,7 +1114,7 @@ pub fn ceilPowerOfTwo(comptime T: type, value: T) (error{Overflow}!T) {
comptime assert(info.signedness == .unsigned);
const PromotedType = std.meta.Int(info.signedness, info.bits + 1);
const overflowBit = @as(PromotedType, 1) << info.bits;
- var x = ceilPowerOfTwoPromote(T, value);
+ const x = ceilPowerOfTwoPromote(T, value);
if (overflowBit & x != 0) {
return error.Overflow;
}