diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-03-07 10:08:07 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-03-07 10:08:07 -0500 |
commit | 0168afd25005b4a3555d2212d2a099cbad344e2b (patch) | |
tree | 18d6d4b501e70770f490fcd93a99bd63583b7f5b /patches | |
parent | 6a44079c9d9527c2eb29cf9fdcf117d7d5529bb8 (diff) | |
download | ziglings-0168afd25005b4a3555d2212d2a099cbad344e2b.tar.gz ziglings-0168afd25005b4a3555d2212d2a099cbad344e2b.tar.bz2 ziglings-0168afd25005b4a3555d2212d2a099cbad344e2b.tar.xz ziglings-0168afd25005b4a3555d2212d2a099cbad344e2b.zip |
"Multi pointers" are now "many pointers"
TypeInfo.Pointer.Size says "many", so there we are!
Diffstat (limited to 'patches')
-rw-r--r-- | patches/patches/54_manypointers.patch | 4 | ||||
-rw-r--r-- | patches/patches/54_multipointers.patch | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/patches/patches/54_manypointers.patch b/patches/patches/54_manypointers.patch new file mode 100644 index 0000000..82824e8 --- /dev/null +++ b/patches/patches/54_manypointers.patch @@ -0,0 +1,4 @@ +33c33 +< const zen12_string: []const u8 = zen_manyptr; +--- +> const zen12_string: []const u8 = zen_manyptr[0..21]; diff --git a/patches/patches/54_multipointers.patch b/patches/patches/54_multipointers.patch deleted file mode 100644 index 84d3f14..0000000 --- a/patches/patches/54_multipointers.patch +++ /dev/null @@ -1,4 +0,0 @@ -33c33 -< const zen12_string: []const u8 = zen_multiptr; ---- -> const zen12_string: []const u8 = zen_multiptr[0..21]; |