Skip to content

Commit

Permalink
ctypedescs: remove spurious APR types from type map
Browse files Browse the repository at this point in the history
These seem to be custom types from the APR library, which don't belong in a generic type map.

I descended git blame, but these lines predate the easily viewable history.
Given commit 3d2d980, I'd guess APR may have been @davidjamesca's use case.
  • Loading branch information
mara004 authored Feb 25, 2024
1 parent 430ebfd commit fd31029
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ctypesgen/ctypedescs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@
("int", True, 2): "c_longlong",
("int", False, 2): "c_ulonglong",
("size_t", True, 0): "c_size_t",
("apr_int64_t", True, 0): "c_int64",
("off64_t", True, 0): "c_int64",
("apr_uint64_t", False, 0): "c_uint64",
("wchar_t", True, 0): "c_wchar",
("ptrdiff_t", True, 0): "c_ssize_t",
("ssize_t", True, 0): "c_ssize_t",
Expand Down

0 comments on commit fd31029

Please sign in to comment.