diff options
Diffstat (limited to 'patches/patches/40_pointers2.patch')
-rw-r--r-- | patches/patches/40_pointers2.patch | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/patches/patches/40_pointers2.patch b/patches/patches/40_pointers2.patch index 8b13789..a69cb20 100644 --- a/patches/patches/40_pointers2.patch +++ b/patches/patches/40_pointers2.patch @@ -1 +1,4 @@ - +24c24 +< const b: *u8 = &a; // fix this! +--- +> const b: *const u8 = &a; // fix this! |