summaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorSean Aubin <sean@proteinqure.com>2023-03-08 19:22:17 -0500
committerSean Aubin <sean@proteinqure.com>2023-03-08 19:22:17 -0500
commitbe87134397d1728b3d98d1229d241254130e0708 (patch)
tree0b6b82896f16aaa0f42c8e53e85bddf25f1ecd14 /patches
parent484822a8da1361d5878c82b0f30eafec1e3bc43e (diff)
change empty init to '???' placeholder
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/096_memory_allocation.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/patches/patches/096_memory_allocation.patch b/patches/patches/096_memory_allocation.patch
index e13a27a..5398ce5 100644
--- a/patches/patches/096_memory_allocation.patch
+++ b/patches/patches/096_memory_allocation.patch
@@ -1,4 +1,4 @@
65c65
-< var avg: []f64 = {};
+< var avg: []f64 = ???;
---
> var avg: []f64 = try allocator.alloc(f64, arr.len);