diff options
| author | Lee Cannon <leecannon@leecannon.xyz> | 2021-10-29 00:37:25 +0100 |
|---|---|---|
| committer | Lee Cannon <leecannon@leecannon.xyz> | 2021-11-30 23:32:47 +0000 |
| commit | 85de022c5671d777f62ddff254a814dab05242fc (patch) | |
| tree | 037f58c4b07d18b80cf48cf74d0f0e8c8866f8f2 /test/cli.zig | |
| parent | 1e0addcf73ee71d23a41b744995848bcca38e8d3 (diff) | |
| download | zig-85de022c5671d777f62ddff254a814dab05242fc.tar.gz zig-85de022c5671d777f62ddff254a814dab05242fc.zip | |
allocgate: std Allocator interface refactor
Diffstat (limited to 'test/cli.zig')
| -rw-r--r-- | test/cli.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cli.zig b/test/cli.zig index 837aef4229..3f50ebe403 100644 --- a/test/cli.zig +++ b/test/cli.zig @@ -5,7 +5,7 @@ const process = std.process; const fs = std.fs; const ChildProcess = std.ChildProcess; -var a: *std.mem.Allocator = undefined; +var a: std.mem.Allocator = undefined; pub fn main() !void { var arena = std.heap.ArenaAllocator.init(std.testing.allocator); |
