diff options
author | 2023-04-14 03:58:38 -0700 | |
---|---|---|
committer | 2023-04-14 03:58:38 -0700 | |
commit | f6a4516d667f7cf000fb2e3123d29079a5ced272 (patch) | |
tree | 4f108bdbd550f6bc05e5e06814c8b271e8ce8d13 /src/bun.js/module_loader.zig | |
parent | 6c69c2b36462100792bb3d1b23aba8afbee0253f (diff) | |
download | bun-f6a4516d667f7cf000fb2e3123d29079a5ced272.tar.gz bun-f6a4516d667f7cf000fb2e3123d29079a5ced272.tar.zst bun-f6a4516d667f7cf000fb2e3123d29079a5ced272.zip |
Upgrade Zig (#2656)
* Upgrade Zig
* Don't add `d` files in github actions
* Revert "Don't add `d` files in github actions"
This reverts commit 446e2dd6743da08ec4136233fdc9179dbbf58fca.
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.js/module_loader.zig')
-rw-r--r-- | src/bun.js/module_loader.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bun.js/module_loader.zig b/src/bun.js/module_loader.zig index 85bc04f53..9ec142176 100644 --- a/src/bun.js/module_loader.zig +++ b/src/bun.js/module_loader.zig @@ -1,7 +1,6 @@ const std = @import("std"); const is_bindgen: bool = std.meta.globalOption("bindgen", bool) orelse false; const StaticExport = @import("./bindings/static_export.zig"); -const c_char = StaticExport.c_char; const bun = @import("bun"); const string = bun.string; const Output = bun.Output; |