diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2023-06-22 11:25:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-22 11:25:22 +0200 |
| commit | 40bedacfdf35116d560580210563339a16457679 (patch) | |
| tree | 0c8ec829c817cd38e3560cf67c239baeea54469c /exercises/096_memory_allocation.zig | |
| parent | f09a87c348bafb134e3f5eca0ef654cc2a20ceef (diff) | |
| parent | ccb580f95db5024962ff91ef522143646a3d1835 (diff) | |
Merge pull request #327 from lorrding/patch_v0.11.0-dev.3747
Fix breaking change in builtin casts functions
Diffstat (limited to 'exercises/096_memory_allocation.zig')
| -rw-r--r-- | exercises/096_memory_allocation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/096_memory_allocation.zig b/exercises/096_memory_allocation.zig index 8e348be..7538ba4 100644 --- a/exercises/096_memory_allocation.zig +++ b/exercises/096_memory_allocation.zig @@ -45,7 +45,7 @@ fn runningAverage(arr: []const f64, avg: []f64) void { for (0.., arr) |index, val| { sum += val; - avg[index] = sum / @intToFloat(f64, index + 1); + avg[index] = sum / @floatFromInt(f64, index + 1); } } |
