diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-07-14 20:11:37 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2022-07-14 20:11:37 +0200 |
| commit | fbe8a11be350e6f926c91c960fd009aa3dcbcbcf (patch) | |
| tree | 628399cbf219b6d68773cb330ef591ba93085bb8 /bindgen/gen_ir.py | |
| parent | ca91acb03bcea2ec14a49baa939dc37ad868b768 (diff) | |
bindings generation minor code cleanup
Diffstat (limited to 'bindgen/gen_ir.py')
| -rw-r--r-- | bindgen/gen_ir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindgen/gen_ir.py b/bindgen/gen_ir.py index 6fcfdb06..1441c435 100644 --- a/bindgen/gen_ir.py +++ b/bindgen/gen_ir.py @@ -79,7 +79,7 @@ def parse_func(decl): if 'inner' in decl: for param in decl['inner']: if param['kind'] != 'ParmVarDecl': - print(f"warning: ignoring func {decl['name']} (unsupported parameter type)") + print(f" >> warning: ignoring func {decl['name']} (unsupported parameter type)") return None outp_param = {} outp_param['name'] = param['name'] |