diff options
| author | 2021-10-11 09:16:56 +0200 | |
|---|---|---|
| committer | 2021-10-11 09:16:56 +0200 | |
| commit | 844c9370bcecf063daff697f296d6ae979190649 (patch) | |
| tree | 11c6f4d60ba2a5130b59f3efcea70fa0da274701 /clap | |
| parent | zig master updates (diff) | |
| download | zig-clap-844c9370bcecf063daff697f296d6ae979190649.tar.gz zig-clap-844c9370bcecf063daff697f296d6ae979190649.tar.xz zig-clap-844c9370bcecf063daff697f296d6ae979190649.zip | |
Fix regression in last commit
The importing of builtin was already fixed, so the latest commit applied
this fix again, which caused problems
Diffstat (limited to 'clap')
| -rw-r--r-- | clap/args.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clap/args.zig b/clap/args.zig index dd97d24..a6be833 100644 --- a/clap/args.zig +++ b/clap/args.zig | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | const builtin = @import("builtin"); | 1 | const builtin = @import("builtin"); |
| 2 | const std = @import("std"); | 2 | const std = @import("std"); |
| 3 | const builtin = @import("builtin"); | ||
| 4 | 3 | ||
| 5 | const debug = std.debug; | 4 | const debug = std.debug; |
| 6 | const heap = std.heap; | 5 | const heap = std.heap; |