| ... | @@ -52,7 +52,7 @@ pub fn parse(k: FlagDashKind) !std.process.ArgIterator { | ... | @@ -52,7 +52,7 @@ pub fn parse(k: FlagDashKind) !std.process.ArgIterator { |
| 52 | for (multis.keys()) |jtem| { | 52 | for (multis.keys()) |jtem| { |
| 53 | if (std.mem.eql(u8, name, jtem)) { | 53 | if (std.mem.eql(u8, name, jtem)) { |
| 54 | const value = try argiter.next(multis.allocator).?; | 54 | const value = try argiter.next(multis.allocator).?; |
| 55 | try multis.get(name).?.append(value); | 55 | try multis.getEntry(name).?.value_ptr.append(value); |
| 56 | continue :blk; | 56 | continue :blk; |
| 57 | } | 57 | } |
| 58 | } | 58 | } |