diff options
| author | Jarred Sumner <jarred@jarredsumner.com> | 2022-01-16 17:26:49 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-16 17:26:49 -0800 |
| commit | 144e36770ed7d7e1ddbcae61742cf76bfb8b0e41 (patch) | |
| tree | 0e34dba84197758bc67c69d52f5eab40530ad636 /lib/std/c/linux.zig | |
| parent | 97063efb69d11bfe7210555948b1f59ab6fb9d08 (diff) | |
| download | zig-144e36770ed7d7e1ddbcae61742cf76bfb8b0e41.tar.gz zig-144e36770ed7d7e1ddbcae61742cf76bfb8b0e41.zip | |
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);
```
Diffstat (limited to 'lib/std/c/linux.zig')
0 files changed, 0 insertions, 0 deletions
