From 484822a8da1361d5878c82b0f30eafec1e3bc43e Mon Sep 17 00:00:00 2001 From: Sean Aubin Date: Wed, 8 Mar 2023 13:42:21 -0500 Subject: rename memory allocation 095 -> 096 --- patches/patches/095_memory_allocation.patch | 4 ---- patches/patches/096_memory_allocation.patch | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 patches/patches/095_memory_allocation.patch create mode 100644 patches/patches/096_memory_allocation.patch (limited to 'patches') diff --git a/patches/patches/095_memory_allocation.patch b/patches/patches/095_memory_allocation.patch deleted file mode 100644 index e13a27a..0000000 --- a/patches/patches/095_memory_allocation.patch +++ /dev/null @@ -1,4 +0,0 @@ -65c65 -< var avg: []f64 = {}; ---- -> var avg: []f64 = try allocator.alloc(f64, arr.len); diff --git a/patches/patches/096_memory_allocation.patch b/patches/patches/096_memory_allocation.patch new file mode 100644 index 0000000..e13a27a --- /dev/null +++ b/patches/patches/096_memory_allocation.patch @@ -0,0 +1,4 @@ +65c65 +< var avg: []f64 = {}; +--- +> var avg: []f64 = try allocator.alloc(f64, arr.len); -- cgit v1.2.3