this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use ArrayList.empty instead of {}.

authored by

Chaituvarma-109 and committed by
Tim Culverhouse
0f46f499 c978389a

+1 -1
+1 -1
src/widgets/Table.zig
··· 170 170 const fn_info = @typeInfo(@TypeOf(@field(@TypeOf(mal_slice), "get"))); 171 171 break :dataType fn_info.@"fn".return_type orelse @panic("No Child Type"); 172 172 }; 173 - var data_out_list = std.ArrayList(DataT){}; 173 + var data_out_list = std.ArrayList(DataT).empty; 174 174 for (0..mal_slice.len) |idx| try data_out_list.append(_alloc, mal_slice.get(idx)); 175 175 break :getData try data_out_list.toOwnedSlice(_alloc); 176 176 }