Skip to content

Commit

Permalink
Hide some notes about unwrapped apis
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbinns committed Nov 16, 2024
1 parent 50277b0 commit f896ec8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/find_unwrapped_apis.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@
assert res.returncode >= 0
if res.returncode == 0: # found
if f in nowrap:
print(f"function { f } is in nowrap, but also in source")
# these aren't wrapped but are used in fts.c
if f not in {"sqlite3_bind_pointer", "sqlite3_prepare", "sqlite3_result_error_nomem"}:
print(f"function { f } is in nowrap, but also in source")
continue
if f not in nowrap:
print("missing", f)

0 comments on commit f896ec8

Please sign in to comment.