aboutsummaryrefslogtreecommitdiff
path: root/bindgen
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2023-01-03 18:09:23 +0100
committerAndre Weissflog <floooh@gmail.com>2023-01-03 18:09:23 +0100
commit11de8a41ca2fe869cafe3ceed983abcca5a00ede (patch)
treecaecd8b74c68b26d732197ab859c676a3ce1edbd /bindgen
parent6c4c75ee0e74631289518356ad61dd177ab041bd (diff)
gen_zig.py: remove obsolete std.meta import
Diffstat (limited to 'bindgen')
-rw-r--r--bindgen/gen_zig.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bindgen/gen_zig.py b/bindgen/gen_zig.py
index a9904ae9..09c68fcb 100644
--- a/bindgen/gen_zig.py
+++ b/bindgen/gen_zig.py
@@ -433,7 +433,6 @@ def pre_parse(inp):
def gen_imports(inp, dep_prefixes):
l('const builtin = @import("builtin");')
- l('const meta = @import("std").meta;')
for dep_prefix in dep_prefixes:
dep_module_name = module_names[dep_prefix]
l(f'const {dep_prefix[:-1]} = @import("{dep_module_name}.zig");')