diff options
Diffstat (limited to '')
| -rw-r--r-- | sqlite.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -3584,7 +3584,7 @@ test "sqlite: create scalar function" { | |||
| 3584 | "myMax", | 3584 | "myMax", |
| 3585 | struct { | 3585 | struct { |
| 3586 | fn run(a: f64, b: f64) f64 { | 3586 | fn run(a: f64, b: f64) f64 { |
| 3587 | return std.math.max(a, b); | 3587 | return @max(a, b); |
| 3588 | } | 3588 | } |
| 3589 | }.run, | 3589 | }.run, |
| 3590 | .{}, | 3590 | .{}, |