From 7f1df869382bcb4dfc7847d72c24cdd915fb579d Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Wed, 4 Sep 2024 20:52:42 +0200 Subject: Reseted the simplification for de-referencing. --- exercises/046_optionals2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises') diff --git a/exercises/046_optionals2.zig b/exercises/046_optionals2.zig index 86654f7..a5436d9 100644 --- a/exercises/046_optionals2.zig +++ b/exercises/046_optionals2.zig @@ -48,7 +48,7 @@ pub fn main() void { // If e1 and e2 are valid pointers to elephants, // this function links the elephants so that e1's tail "points" to e2. fn linkElephants(e1: ?*Elephant, e2: ?*Elephant) void { - e1.?.tail = e2; + e1.?.*.tail = e2.?; } // This function visits all elephants once, starting with the -- cgit v1.2.3