Jarred Sumner 144e36770e
Fix missing !void in std.MultiArrayList
Calling `insert` on a `std.MultiArrayList` currently fails with a compiler error due to using a `try` without the `!` annotation on the return type

```zig
this.list.insert(allocator, 0, listener);
```

```zig
/Users/jarred/Build/zig/lib/std/multi_array_list.zig:192:13: error: expected type 'void', found '@typeInfo(@typeInfo(@TypeOf(std.multi_array_list.MultiArrayList(src.javascript.jsc.node.types.Listener).ensureUnusedCapacity)).Fn.return_type.?).ErrorUnion.error_set'
            try self.ensureUnusedCapacity(gpa, 1);
```
2022-01-16 17:26:49 -08:00
..
2021-12-21 01:41:51 +01:00
2022-01-15 15:18:25 -07:00
2021-11-15 04:47:57 +01:00
2021-12-21 17:13:52 -08:00
2022-01-07 00:06:06 -05:00
2021-10-27 16:07:48 -04:00
2022-01-07 00:06:06 -05:00
2022-01-07 00:06:06 -05:00