Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
damirka committed Jan 24, 2025
1 parent a1a429e commit 9cf517b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public macro fun num_divide_and_round_up<$T>($x: $T, $y: $T): $T {
else x / y + 1
}

public macro fun num_pow<$T>($base: $T, $exponent: u8): $T {
public macro fun num_pow($base: _, $exponent: u8): _ {
let mut base = $base;
let mut exponent = $exponent;
let mut res = 1;
Expand Down

0 comments on commit 9cf517b

Please sign in to comment.